-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblackjack.py
executable file
·277 lines (231 loc) · 12.1 KB
/
blackjack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
############### Blackjack Project #####################
import random
import os
logo = """
oooooooooo. oooo oooo
`888' `Y8b `888 `888
888 888 888 .oooo. .ooooo. 888 oooo
888oooo888' 888 `P )88b d88' `"Y8 888 .8P'
888 `88b 888 .oP"888 888 888888.
888 .88P 888 d8( 888 888 .o8 888 `88b.
o888bood8P' o888o `Y888""8o `Y8bod8P' o888o o888o
oooo oooo 88 .oooo. .o
`888 `888 .8' .dP""Y88b o888
888 .oooo. .ooooo. 888 oooo .8' ]8P' 888
888 `P )88b d88' `"Y8 888 .8P' .8' .d8P' 888
888 .oP"888 888 888888. .8' .dP' 888
888 d8( 888 888 .o8 888 `88b. .8' .oP .o 888
.o. 88P `Y888""8o `Y8bod8P' o888o o888o 88 8888888888 o888o
`Y888P
"""
############### Our Blackjack House Rules #####################
## The deck is unlimited in size.
## There are no jokers.
## The Jack/Queen/King all count as 10.
## The the Ace can count as 11 or 1.
## Use the following list as the deck of cards:
## cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
## The cards in the list have equal probability of being drawn.
## Cards are not removed from the deck as they are drawn.
## The computer is the dealer.
cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
seed = random.randint(0, 5000)
random.seed(seed)
end_of_game = False
def user_deal(cards):
return random.choice(cards)
def computer_deal(cards):
return random.choice(cards)
def clear():
os.system('cls')
os.system('clear')
while end_of_game == False:
clear()
user_cards = []
user_total = 0
computer_cards = []
computer_total = 0
print(logo)
user_response = input("\nWould you like to play a game of blackjack?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
user_cards.append(user_deal(cards))
user_cards.append(user_deal(cards))
user_total = sum(user_cards)
computer_cards.append(user_deal(cards))
computer_cards.append(user_deal(cards))
computer_total = sum(computer_cards)
print(f"\nYour cards are: {user_cards}, and your current score is: {user_total}")
print(f"The computer's first card is: {computer_cards[0]}")
hit_or_stay = input("\nType 'h' for Hit if you want another card or 's' for stay if you want to take your chances: ")
if hit_or_stay == 'h':
user_cards.append(user_deal(cards))
if 11 in user_cards:
ace = input("\nYou have an Ace!. How would you like to use it towards your total? Type '1' to use it as the value 1 and '11' to use its value as 11: ")
if ace == '1':
index = user_cards.index(11)
user_cards[index] = 1
user_total = sum(user_cards)
else:
user_total = sum(user_cards)
else:
user_total = sum(user_cards)
if user_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou are over 21. Sorry, You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if computer_total < 17:
computer_cards.append(user_deal(cards))
computer_total = sum(computer_cards)
if computer_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if user_total > computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
elif user_total < computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nThe Computer has a better hand! You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if computer_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if user_total > computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
elif user_total < computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nThe Computer has a better hand! You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if user_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou are over 21. Sorry, You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if computer_total < 17:
computer_cards.append(user_deal(cards))
computer_total = sum(computer_cards)
if computer_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if user_total > computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
elif user_total < computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nThe Computer has a better hand! You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if computer_total > 21:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
else:
if user_total > computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nYou Win!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
elif user_total < computer_total:
print(f"\nYour final hand is: {user_cards}, and your current score is: {user_total}")
print(f"The computer's hand is: {computer_cards}")
print("\nThe Computer has a better hand! You Lose!\n")
user_response = input("\nWould you like to play again?\nType 'y' for Yes or 'n' for No : ")
if user_response == 'y':
end_of_game = False
else:
end_of_game = True
break
print("\nThank you for playing!!\n\n")