In Python how do you define a variable as a users response without type casting the response?
if the variable is a
a = raw_input("ENTER A NUMBER") # type casts "a" as a string
a = input("ENTER A NUMBER") # type casts "a" as a integer
How do I let the computer decide what the the answer type the answer is?