Dieser Artikel wurde von einem Anfänger verfasst, der seit anderthalb Monaten programmiert. Bitte lesen Sie ihn daher sorgfältig durch.
Umgebung ・ Windows 10 (kann überhaupt auf dem Mac ausgeführt werden)
Verwendete Sprache ・ Python3
Editor zu verwenden ・ VScode
blackjack.py
import random
deck = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] * 4
def deal():
hand = []
for i in range(2):
random.shuffle(deck)
card = deck.pop()
if card == 11:
card = "J"
if card == 12:
card = "Q"
if card == 13:
card = "K"
if card == 1:
card = "A"
hand.append(card)
return hand
def hit(hand):
random.shuffle(deck)
card = deck.pop()
if card == 11:
card = "J"
if card == 12:
card = "Q"
if card == 13:
card = "K"
if card == 1:
card = "A"
hand.append(card)
return hand
def total(hand):
score = 0
for card in hand:
if card == "J" or card == "Q" or card == "K":
score = score + 10
elif card == "A":
if score >= 11:
score = score + 1
else:
score += 11
else:
score += card
return score
def play_again():
again = input("Möchten Sie noch einmal spielen?(Y/N): ")
if again == "y" or again == "Y":
# game()
return
else:
print("Danke für deine harte Arbeit!")
exit()
def result(dealer_hand, player_hand):
if total(player_hand) > total(dealer_hand):
print(
f"\n Händlersumme{total(dealer_hand)}Ihre Summe{total(player_hand)}ist.\033[32mYOU WIN!\033[0m")
elif total(dealer_hand) > total(player_hand):
print(
f"\n Händlersumme{total(dealer_hand)}Ihre Summe{total(player_hand)}ist.\033[91mYOU LOSE...\033[0m")
def game():
dealer_hand = deal()
player_hand = deal()
print(f"Die Karte des Händlers ist{dealer_hand[0]}ist.")
print(f"Die Karte des Spielers ist{player_hand}Die Summe ist{total(player_hand)}ist.")
choice = 0
while choice != quit:
choice = input("Willst du schlagen? Willst du stehen(HIT/STAND): ").lower()
if choice == "hit":
hit(player_hand)
print(
f"\n zu dir{player_hand[-1]}Wird ausgeteilt und die Karte ist{player_hand}Die Summe ist{total(player_hand)}ist.")
if total(player_hand) > 21:
print("Sie haben 21 überschritten.\033[91mYOU LOSE...\033[0m")
choice = quit
elif choice == "stand":
print(
f"\n Die zweite Karte des Dealers ist{dealer_hand[1]}Die Summe ist{total(dealer_hand)}ist.")
while total(dealer_hand) < 17:
hit(dealer_hand)
print(
f"Zum Händler{dealer_hand[-1]}Wird ausgeteilt und die Karte ist{dealer_hand}Die Summe ist{total(dealer_hand)}ist.")
if total(dealer_hand) > 21:
print("Die Anzahl der Händler hat 21 überschritten.\033[32mYOU WIN!\033[0m")
choice = quit
if total(dealer_hand) <= 21:
result(dealer_hand, player_hand)
choice = quit
game()
Drücke einfach im Terminal, um das Spiel zu starten.
Recommended Posts