11 lines
No EOL
255 B
Python
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() |