Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. hi = raw_input("Enter in your age ")
  2.  
  3. print "Your age is \n" + hi
  4. hi = int() <<<<<<<<<< I put it here
  5. if hi == 55:
  6. print "Your at the golden years"
  7. print "These will be the best ever"
  8. elif hi <= 10:
  9. print "You a youngin or what?"
  10. elif hi <= 20:
  11. print "You are a young buck"
  12. elif hi >= 55:
  13. print "Maybe you should think about being young again old fart"
  14. else :
  15. print "Dinosaurs are real"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement