Sie sind auf Seite 1von 1

import random

def tarotReader():
cards = ["The Magician","The High Priestess","The Empress",
"The Emperor","The Hierophant","The Lovers","The Chariot",
"Justice","The Hermit","Wheel of Fortune","Strength",
"The Hanged Man","Death","Temperance",
"The Devil","The Tower","The Star","The Moon",
"The Sun","Judgement","The World"]

random.shuffle(cards)
past, present, future = cards[:3]
print("To represent your past, you picked {}.".format(past))
print("To represent your present, you picked {}.".format(present))
print("To represent your future, you picked {}".format(future))

tarotReader()

Das könnte Ihnen auch gefallen