the-honk/school/gcse/year 9/python challenges/20 - Guess 7.py
2021-12-21 19:46:28 +00:00

11 lines
No EOL
183 B
Python

def guess():
num = int(input('Please input a number.'))
if num == 7:
print('Well done!')
exit()
else:
print('Try again!')
guess()
guess()