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 d0a6779 commit 9d7d5ccCopy full SHA for 9d7d5cc
brain_games/games/even.py
@@ -2,7 +2,7 @@
2
rules = 'Answer "yes" if the number is even, otherwise answer "no".'
3
def get_round():
4
num = random.randint(1, 100)
5
- question = num
+ question = f'Question: {num}'
6
if num % 2 == 0:
7
correct_answer = 'yes'
8
else:
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
name = "hexlet-code"
-version = "0.6.0"
+version = "0.6.1"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
0 commit comments