File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class bcolors:
35
35
print ("Ok bubyeee! See you later" )
36
36
elif b == "Y" or b == "y" :
37
37
print (
38
- "There will be 10 matches and the one who won max matches will win Let's start"
38
+ "There will be 10 matches, and the one who wins more matches will win. Let's start. "
39
39
)
40
40
41
41
i = 0
@@ -44,10 +44,10 @@ class bcolors:
44
44
while run and i < 10 :
45
45
46
46
comp_choice = random .choice (li )
47
- user_choice = input ("Type s for snake,w for water or g for gun: " ).lower ()
47
+ user_choice = input ("Type s for snake, w for water or g for gun: " ).lower ()
48
48
49
49
if user_choice == comp_choice :
50
- print (bcolors .HEADERS + "Game draws.Play again" + bcolors .ENDC )
50
+ print (bcolors .HEADERS + "Game draws. Play again" + bcolors .ENDC )
51
51
52
52
elif user_choice == "s" and comp_choice == "g" :
53
53
print (bcolors .FAIL + "It's Snake v/s Gun You lose!" + bcolors .ENDC )
@@ -93,6 +93,6 @@ class bcolors:
93
93
print (
94
94
bcolors .FAIL
95
95
+ bcolors .BOLD
96
- + "You lose!!!.Better luck next time"
96
+ + "You lose!!!. Better luck next time"
97
97
+ bcolors .ENDC
98
98
)
You can’t perform that action at this time.
0 commit comments