age = raw_input('How old are you? ')
age2=float(age)
print "You are ",age2," years old"
Variables can be declared as numbers usually in the form of a float or integer. For accuracy, numbers are usually declared as floats.
But you don't always have to declare variables in Python . Sometimes Python recognizes it for you automatically. If you type a variable like temp=31.0 (short form of temperature) , Python recognizes it as a float. In otherwords, any variable with a decimal number assigned to it, will be recognized as a float in Python. You can check this with the program as shown
temp=31.0
print type(temp)
The program will print the type of variable temp is - which is a float.
updated 12-7-2015
No comments:
Post a Comment