Skip to content

Commit e2c73ec

Browse files
committed
Fix typo
1 parent 6f10b8f commit e2c73ec

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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)