import itertools
import random

deck = list(itertools.product(range(1,14),['Spade','Heart','Diamond','Club']))

random.shuffle(deck)

print("Shuffled deck of cards:")
for card in deck:
    print(card[0], "of", card[1])

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: