Python Program to Shuffle Deck of Cards

Python Program to Shuffle Deck of Cards: In this program, you’ll learn to shuffle a deck of cards using the random module.

Python Program to Shuffle Deck of Cards

Source Code

# Python program to shuffle a deck of card

# importing modules
import itertools, random

# make a deck of cards
deck = list(itertools.product(range(1,14),['Spade','Heart','Diamond','Club']))

# shuffle the cards
random.shuffle(deck)

# draw five cards
print("You got:")
for i in range(5):
   print(deck[i][0], "of", deck[i][1])

Output of Program