We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6668e01 commit f02b664Copy full SHA for f02b664
brain_games/games/brain_even.py
@@ -24,7 +24,7 @@ def even():
24
print('Correct!')
25
count += 1
26
elif rand_num % 2 == 0 and user_answer == 'no':
27
- return print(f"'no' is wrong answer ;(. Correct answer was 'yes'.\nLet's try again {name}!")
+ return print(f"'no' is wrong answer ;(. Correct answer was 'yes'.\nLet's try again, {name}!")
28
elif rand_num % 2 != 0 and user_answer == 'yes':
29
return print(f"'yes' is wrong answer ;(. Correct answer was 'no'.\nLet's try again, {name}!")
30
else:
0 commit comments