Skip to content

Commit a5b2da5

Browse files
author
shmelevik
committed
delete time from even
1 parent b28780f commit a5b2da5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
-127 Bytes
Binary file not shown.

brain_games/scripts/games/brain_even.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from random import randint
2-
from time import sleep
32

43
from prompt import string
54

@@ -8,10 +7,8 @@
87

98

109
def is_even_game(name):
11-
sleep(1)
1210
print('Answer "yes" if the number is even, otherwise answer "no".')
13-
sleep(1)
14-
11+
1512
correct_guesses = 0
1613

1714
while correct_guesses < 3:
@@ -26,7 +23,6 @@ def is_even_game(name):
2623
return
2724

2825
print('Correct!')
29-
sleep(1)
3026

3127
correct_guesses += 1
3228

0 commit comments

Comments
 (0)