Files
buttnerdz/code/lesson-2/codez.py
Fergal Moran 5fa540c57e Lesson 2
2020-11-23 20:04:01 +00:00

8 lines
140 B
Python

age = input('Tell me your age? > ')
print('Your age is.....')
print(age)
if int(age) < 30:
print('Young!!!')
else:
print('Old!!!!')