Skip to content

Commit 09b3bfe

Browse files
Merge pull request #1507 from RedPlumDragon/patch-4
Fix Grammar
2 parents 26d784c + 22b3fdc commit 09b3bfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Snake_water_gun/main.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class bcolors:
3535
print("Ok bubyeee! See you later")
3636
elif 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

4141
i = 0
@@ -44,10 +44,10 @@ class bcolors:
4444
while 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
)

0 commit comments

Comments
 (0)