We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9dfa22f + e2c73ec commit 299b78fCopy full SHA for 299b78f
01_Acey_Ducey/python/acey_ducey.py
@@ -6,7 +6,6 @@
6
7
import random
8
9
-
10
cards = {
11
2: "2",
12
3: "3",
@@ -28,7 +27,7 @@ def play_game() -> None:
28
27
cash = 100
29
while cash > 0:
30
print(f"You now have {cash} dollars\n")
31
- print("Here are you next two cards")
+ print("Here are your next two cards")
32
round_cards = list(cards.keys()) # gather cards from dictionary
33
card_a = random.choice(round_cards) # choose a card
34
card_b = card_a # clone the first card, so we avoid the same number for the second card
0 commit comments