From bf4fdb7d1431f77ee9951dcc3f8175b0b858d50f Mon Sep 17 00:00:00 2001 From: Shimon Shtein Date: Wed, 2 Sep 2026 13:41:25 +0300 Subject: [PATCH] The game uses 1 in 30 now This is the body of the comment --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4c970c4..f641521 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,6 @@ import random -number = random.randint(1, 20) +number = random.randint(1, 30) for attempt in range(10): guessed_num = int(input("Try to guess the number:"))