# Author: Scott Wehrwein
# Date: 05/10/2019
# A program to create a 52-card deck and deal a blackjack hand
# from it.
import random

suits = ["C", "H", "S", "D"]
values = ["A"]
values.extend(range(2, 11))
values.extend(["J", "Q", "K"])

print(suits)
print(values)

deck = []

for suit in suits:
    for value in values:
        deck.append((value, suit))
   
random.shuffle(deck)

for (value, suit) in deck:
    print(value, "of", suit)

# deal a hand ...
# play the game
