This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while True: | |
# Print an opening statement | |
print("Welcome to Blackjack") | |
# Create & shuffle the deck, deal two cards to each player | |
new_deck = Deck() | |
new_deck.shuffle() | |
player_hand = Hand() |