File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class bcolors:
3535 print ("Ok bubyeee! See you later" )
3636elif b == "Y" or b == "y" :
3737 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. "
3939 )
4040
4141i = 0
@@ -44,10 +44,10 @@ class bcolors:
4444while run and i < 10 :
4545
4646 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 ()
4848
4949 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 )
5151
5252 elif user_choice == "s" and comp_choice == "g" :
5353 print (bcolors .FAIL + "It's Snake v/s Gun You lose!" + bcolors .ENDC )
@@ -93,6 +93,6 @@ class bcolors:
9393 print (
9494 bcolors .FAIL
9595 + bcolors .BOLD
96- + "You lose!!!.Better luck next time"
96+ + "You lose!!!. Better luck next time"
9797 + bcolors .ENDC
9898 )
You can’t perform that action at this time.
0 commit comments