From e2c73ec2781570191878ae5012bd460a63284948 Mon Sep 17 00:00:00 2001 From: Brian Wignall Date: Sun, 4 Jan 2026 04:49:50 -0500 Subject: [PATCH] Fix typo --- 01_Acey_Ducey/python/acey_ducey.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/01_Acey_Ducey/python/acey_ducey.py b/01_Acey_Ducey/python/acey_ducey.py index 75a1eac27..e6dca6f21 100755 --- a/01_Acey_Ducey/python/acey_ducey.py +++ b/01_Acey_Ducey/python/acey_ducey.py @@ -6,7 +6,6 @@ import random - cards = { 2: "2", 3: "3", @@ -28,7 +27,7 @@ def play_game() -> None: cash = 100 while cash > 0: print(f"You now have {cash} dollars\n") - print("Here are you next two cards") + print("Here are your next two cards") round_cards = list(cards.keys()) # gather cards from dictionary card_a = random.choice(round_cards) # choose a card card_b = card_a # clone the first card, so we avoid the same number for the second card