Skip to content

Commit 299b78f

Browse files
Merge pull request #938 from bwignall/fix_typo_935
Fix typo
2 parents 9dfa22f + e2c73ec commit 299b78f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

01_Acey_Ducey/python/acey_ducey.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import random
88

9-
109
cards = {
1110
2: "2",
1211
3: "3",
@@ -28,7 +27,7 @@ def play_game() -> None:
2827
cash = 100
2928
while cash > 0:
3029
print(f"You now have {cash} dollars\n")
31-
print("Here are you next two cards")
30+
print("Here are your next two cards")
3231
round_cards = list(cards.keys()) # gather cards from dictionary
3332
card_a = random.choice(round_cards) # choose a card
3433
card_b = card_a # clone the first card, so we avoid the same number for the second card

0 commit comments

Comments
 (0)