Skip to content

Commit 6b2989a

Browse files
committed
11 days program
1 parent 57282c0 commit 6b2989a

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

010-day/Program28.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#In this section we are going to create a calculator program
2-
32
#Calculator
43

54
#Add

011-day/Program29.py

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#In this section we are going to implementr BlackJack Game program
2+
import random
3+
def deal_card():
4+
cards = [11,2,3,4,5,6,7,8,9,10,10,10,10]
5+
random_value = random.randint(0, len(cards)-1)
6+
return cards[random_value]
7+
8+
random_card = deal_card()
9+
print(f"card value: {random_card}")
10+
11+
user_card = []
12+
computer_card = []
13+
14+
for _ in range(2):
15+
user_card.extend(deal_card())
16+
computer_card.extend(deal_card())
17+
18+
def calculate_score(cards):
19+
if sum(cards) == 21 and len(cards) == 2:
20+
return 0
21+
if 11 in cards and sum(cards) > 21:
22+
cards.remove(11)
23+
cards.append(1)
24+
return sum(cards)
25+

0 commit comments

Comments
 (0)