We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd492ae + 2703a6c commit 08e6bb3Copy full SHA for 08e6bb3
1 file changed
BlackJack_game/blackjack.py
@@ -22,10 +22,10 @@
22
sleep(2)
23
print("Lets Check How Lucky You Are Wish You All The Best")
24
25
-print("Loading---")
+print("Loading...")
26
27
28
-print("Still Loading---")
+print("Still Loading...")
29
30
print(
31
"So You Are Still Here Not Gone I Gave You Chance But No Problem May Be You Trust Your Fortune A Lot \n Lets Begin Then"
@@ -105,7 +105,7 @@ def dealer_choice():
105
106
while sum(p_cards) < 21:
107
# to continue the game again and again !!
108
- k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay ")
+ k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay: ")
109
if k == "1": # Amended 1 to a string
110
random.shuffle(deck)
111
p_cards.append(deck.pop())
0 commit comments