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

6 lines
136 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
number = int(input('Enter number between 10 to 20 : '))
if 10 < number < 20:
print('Thank you')
else:
print('Incorrect answer')