I am very new to Python.Is there any method through which i can find out which type of value is stored in a particular variable?
In below code how to find out type of stored value in a variable?
counter = 100 miles = 1000.0 name = "John" name =10 print counter print miles print name
print type(counter)?Typefunction. You can check it here stackoverflow.com/questions/402504/…