Skip to content

Commit 9d7d5cc

Browse files
committed
Обновил brain-even
1 parent d0a6779 commit 9d7d5cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

brain_games/games/even.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
rules = 'Answer "yes" if the number is even, otherwise answer "no".'
33
def get_round():
44
num = random.randint(1, 100)
5-
question = num
5+
question = f'Question: {num}'
66
if num % 2 == 0:
77
correct_answer = 'yes'
88
else:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hexlet-code"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)