I'm trying to convert how many years old you are into days:
print "age into days converter"
name = raw_input("What is your name: ")
age = raw_input("How old are you: ")
days_in_years = 365
age_in_days = age * days_in_years
print "You are %s days old" %age_in_days
However, it prints your age 365 times instead of multiplying it. I tried using input, int(, and trying to convert it to a float value but it still wasn't working.