File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
# master
2
2
#master
3
3
# BLACK JACK - CASINO A GAME OF FORTUNE!!!
4
- import time
4
+ from time import *
5
5
6
6
# BLACK JACK - CASINO
7
7
# PYTHON CODE BASE
15
15
random .shuffle (deck )
16
16
17
17
print (f'{ "*" * 58 } \n Welcome to the game Casino - BLACK JACK ! \n { "*" * 58 } ' )
18
- time . sleep (2 )
18
+ sleep (2 )
19
19
print ('So Finally You Are Here To Accept Your Fate' )
20
- time . sleep (2 )
20
+ sleep (2 )
21
21
print ('I Mean Your Fortune' )
22
- time . sleep (2 )
22
+ sleep (2 )
23
23
print ('Lets Check How Lucky You Are Wish You All The Best' )
24
- time . sleep (2 )
24
+ sleep (2 )
25
25
print ('Loading---' )
26
- time . sleep (2 )
26
+ sleep (2 )
27
27
28
28
print ('Still Loading---' )
29
- time . sleep (2 )
29
+ sleep (2 )
30
30
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' )
31
- time . sleep (2 )
31
+ sleep (2 )
32
32
d_cards = [] # Initialising dealer's cards
33
33
p_cards = [] # Initialising player's cards
34
- time . sleep (2 )
34
+ sleep (2 )
35
35
while len (d_cards ) != 2 :
36
36
random .shuffle (deck )
37
37
d_cards .append (deck .pop ())
You can’t perform that action at this time.
0 commit comments