Skip to content

Commit

Permalink
Merge pull request #1417 from anshikajain108/patch-1
Browse files Browse the repository at this point in the history
Update blackjack.py
  • Loading branch information
geekcomputers authored Oct 28, 2021
2 parents 794e5a6 + 240e69c commit 13763db
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions BlackJack_game/blackjack.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# master
#master
# BLACK JACK - CASINO A GAME OF FORTUNE!!!
import time
from time import *

# BLACK JACK - CASINO
# PYTHON CODE BASE
Expand All @@ -15,23 +15,23 @@
random.shuffle(deck)

print(f'{"*"*58} \n Welcome to the game Casino - BLACK JACK ! \n{"*"*58}')
time.sleep(2)
sleep(2)
print('So Finally You Are Here To Accept Your Fate')
time.sleep(2)
sleep(2)
print('I Mean Your Fortune')
time.sleep(2)
sleep(2)
print('Lets Check How Lucky You Are Wish You All The Best')
time.sleep(2)
sleep(2)
print('Loading---')
time.sleep(2)
sleep(2)

print('Still Loading---')
time.sleep(2)
sleep(2)
print('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')
time.sleep(2)
sleep(2)
d_cards = [] # Initialising dealer's cards
p_cards = [] # Initialising player's cards
time.sleep(2)
sleep(2)
while len(d_cards) != 2:
random.shuffle(deck)
d_cards.append(deck.pop())
Expand Down

0 comments on commit 13763db

Please sign in to comment.