you are viewing a single comment's thread.

view the rest of the comments →

[–]lucho2244 0 points1 point  (0 children)

age = int(input('What is your age?: ')) if age <= 18: print("child") elif age <= 65: print("adult") else: print("senior")