"""Ask the user for his or her age. Print whether the user can drink and/or vote.""" age = raw_input("Enter your age: ") print "Age:", age print "The type of age is:", type(age) int_age = int(age) if int_age >= 21: print "You can drink in MA." elif int_age >= 18: print "You can vote but can't drink." else: print "You cannot drink or vote in MA." """ Remember - input allows malicious actors access to your Python interpreter, which means they can run code! Don't use input. """ #input_age = input("Enter your age: ") #print "Age:", input_age #print "The type of age is:", type(input_age)