Skip to content

Instantly share code, notes, and snippets.

View Piwero's full-sized avatar

Piwero Piwero

View GitHub Profile
@Piwero
Piwero / blackjackv2.py
Created November 3, 2020 16:39
Blackjack
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()