the-honk/coursework/gcse computer science/year 9/python/python challenges/9 - Olympics.py
2021-07-16 17:25:04 +01:00

11 lines
No EOL
255 B
Python

def ask():
inp = str.lower(input('Please input an olympic value.'))
if (inp == 'respect') | (inp == 'excellence') | (inp == 'friendship'):
print('That\'s correct!')
exit()
else:
print('Try again!')
ask()
ask()