I have a code written in python and I want to get a number from user and then add a 'c' character before that and then find that variable. But I just get the string. Here is my code using dictionary:
c1234 = {"name":"Komeil", "family":"Asadollah Nia"}
codee = int (input ("Please enter your code: "))
code = "c" + str(codee)
print (code)
I want to get my dictionary but it just prints "c1234"
Please help me.