Skip to content

Commit 90a4e1d

Browse files
authored
Update blackjack.py
1 parent 7c148e1 commit 90a4e1d

1 file changed

Lines changed: 16 additions & 8 deletions

File tree

BlackJack_game/blackjack.py

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
1-
# BLACK JACK - CASINO
2-
1+
# BLACK JACK - CASINO A GAME OF FORTUNE!!!
2+
import time
33
import random
44

55
deck = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 11] * 4
66

77
random.shuffle(deck)
88

9-
print(
10-
" ********************************************************** ")
11-
print(
12-
" Welcome to the game Casino - BLACK JACK ! ")
13-
print(
14-
" ********************************************************** ")
159

10+
print('********************************************************** \n Welcome to the game Casino - BLACK JACK ! \n**********************************************************')
11+
time.sleep(2)
12+
print('So Finally You Are Here To Accept Your Fate')
13+
time.sleep(2)
14+
print('I Mean Your Fortune')
15+
time.sleep(2)
16+
print('Lets Check How Lucky You Are Wish You All The Best')
17+
time.sleep(2)
18+
print('Loading---')
19+
time.sleep(2)
20+
21+
print('Still Loading---')
22+
time.sleep(2)
23+
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')
1624
d_cards = [] # Initialising dealer's cards
1725
p_cards = [] # Initialising player's cards
1826

0 commit comments

Comments
 (0)