Skip to content

Commit 08e6bb3

Browse files
Merge pull request #3182 from dp0000000004-eng/patch-1
Fix loading messages and input prompt formatting
2 parents fd492ae + 2703a6c commit 08e6bb3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

BlackJack_game/blackjack.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
sleep(2)
2323
print("Lets Check How Lucky You Are Wish You All The Best")
2424
sleep(2)
25-
print("Loading---")
25+
print("Loading...")
2626
sleep(2)
2727

28-
print("Still Loading---")
28+
print("Still Loading...")
2929
sleep(2)
3030
print(
3131
"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():
105105

106106
while sum(p_cards) < 21:
107107
# to continue the game again and again !!
108-
k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay ")
108+
k = input("Want to hit or stay?\n Press 1 for hit and 0 for stay: ")
109109
if k == "1": # Amended 1 to a string
110110
random.shuffle(deck)
111111
p_cards.append(deck.pop())

0 commit comments

Comments
 (0)