Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- age = int(input("How many years old are you?"))
- if age <= 1:
- lifestage = "infant"
- elif age > 1 and age < 13:
- lifestage = "child"
- elif age >= 13 and age < 20:
- lifestage = "teenager"
- elif age >= 20:
- lifestage = "adult"
- print('You are a(n):', lifestage)
- input("\n\nPress the enter key to exit.")
Add Comment
Please, Sign In to add comment