Skip to content

Commit 73778df

Browse files
Merge pull request #2992 from khanhkhanhlele/BlackJack_game/blackjack.py
Fix typos in BlackJack_game/blackjack.py
2 parents d378eea + d8b9dee commit 73778df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BlackJack_game/blackjack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def dealer_choice():
106106
while sum(p_cards) < 21:
107107
# to continue the game again and again !!
108108
k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay ")
109-
if k == "1": # Ammended 1 to a string
109+
if k == "1": # Amended 1 to a string
110110
random.shuffle(deck)
111111
p_cards.append(deck.pop())
112112
print("You have a total of " + str(sum(p_cards)) + " with the cards ", p_cards)

0 commit comments

Comments
 (0)