I want to create a deck of cards that gets the first card after it shuffles
from random import shuffle
def doing_deck():
value = ['a','2','3','4','5','6','7','8','9','t','j','q','k']
suits = ['H','D','S','C',]
cards = []
fo...
asked by
12.04.2017 / 20:55