For some reason it just jumps to the else statement instead of going to if and elif.
Any input would really be apreciated.
a=raw_input( "What is your name: ")
b= int(raw_input( "What year were you born: "))
c= int(raw_input( "What year is it now: "))
print "Hello",a,"you are",c-b,"years old."
class object():
'userAge'== c-b
'teenager'== (13,14,15,16,17,18,19)
if 'userAge' <=12:
print "You are really young"
elif 'userAge'=='teenager':
print "You are a teen"
else:
print "You're really old."
object()