Skip to content

Commit 16c2958

Browse files
committed
split the string 22 into two prints
1 parent d484666 commit 16c2958

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

brain_games/games/start_game.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ def start_game(game_func):
1919
print("Correct!")
2020
correct_answers_count += 1
2121
else:
22-
print(f"'{user_answer}' is wrong answer ;(. Correct answer was '{correct_answer}'.")
22+
print(f"'{user_answer}' is wrong answer ;(.")
23+
print(f"Correct answer was '{correct_answer}'.")
2324
print(f"Let's try again, {user_name}!")
2425
break
2526

0 commit comments

Comments
 (0)