Skip to content

Commit f3c57c2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3858b9f commit f3c57c2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

other/guess_the_number_userplay.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import random
22

3+
34
def guess():
45
print("🎯 Welcome to Guess the Number game!")
56
print("Rules are simple, guess a number between 0 and 20, and enter it below.")
67
print("Only 5 Attempts are possible")
78
print()
89

9-
1010
computer = random.choice(range(21))
1111
print("Alright, let’s go! Type your first guess 👇")
1212
print()
@@ -30,5 +30,4 @@ def guess():
3030
count += 1
3131

3232

33-
3433
guess()

0 commit comments

Comments
 (0)