python-by-example-150-chall.../challenges12-19/challenge-017.py

10 lines
243 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
age = int(input('Please enter your age : '))
if age >= 18:
print('You can vote')
elif age == 17:
print('You can learn to drive')
elif age == 16:
print('You can buy a lottery ticket')
else:
print('You can go Trick-or-Treating')