Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def crystal_ball():
- """ tarot cards by meklin of reddit9k
- :return: A random answer.
- :rtype: str
- """
- answers = [
- 'Fool π', 'Magician πͺ', 'High Priestess π', 'Empress π',
- 'Emperor π§', 'Heirophant β', 'Lovers π', 'Chariot π',
- 'Strength πͺ', 'Hermit π₯Έ', 'Wheel of Fortune π‘', 'Justice β',
- 'Hanged Man πͺ', 'Death', 'Temperance π',
- 'Devil π', 'Tower πΌ', 'Star β', 'Moon π',
- 'Sun π ', 'Judgement πΊ', 'World π',
- 'Ace of Wands', 'Two of Wands', 'Three of Wands',
- 'Four of Wands', 'Five of Wands', 'Six of Wands',
- 'Seven of Wands', 'Eight of Wands', 'Nine of Wands',
- 'Ten of Wands', 'Page of Wands', 'Knight of Wands',
- 'Queen of Wands', 'King of Wands', 'Ace of Pentacles',
- 'Two of Pentacles', 'Three of Pentacles', 'Four of Pentacles',
- 'Five of Pentacles', 'Six of Pentacles', 'Seven of Pentacles',
- 'Eight of Pentacles', 'Nine of Pentacles', 'Ten of Pentacles',
- 'Page of Pentacles', 'Knight of Pentacles', 'Queen of Pentacles',
- 'King of Pentacles', 'Ace of Cups', 'Two of Cups',
- 'Three of Cups', 'Four of Cups', 'Five of Cups',
- 'Six of Cups', 'Seven of Cups', 'Eight of Cups',
- 'Nine of Cups', 'Ten of Cups', 'Page of Cups',
- 'Knight of Cups', 'Queen of Cups', 'King of Cups',
- 'Ace of Swords', 'Two of Swords', 'Three of Swords',
- 'Four of Swords', 'Five of Swords', 'Six of Swords',
- 'Seven of Swords', 'Eight of Swords', 'Nine of Swords',
- 'Ten of Swords', 'Page of Swords', 'Knight of Swords',
- 'Queen of Swords', 'King of Swords'
- ]
- return random.choice(answers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement