Advertisement
MeKLiN2

Untitled

Jan 5th, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. def crystal_ball():
  2. """ tarot cards by meklin of reddit9k
  3.  
  4. :return: A random answer.
  5. :rtype: str
  6. """
  7. answers = [
  8. 'Fool πŸ˜„', 'Magician πŸͺ„', 'High Priestess πŸ‘„', 'Empress πŸ‘‘',
  9. 'Emperor πŸ§”', 'Heirophant ⚚', 'Lovers πŸ’‘', 'Chariot 🐎',
  10. 'Strength πŸ’ͺ', 'Hermit πŸ₯Έ', 'Wheel of Fortune 🎑', 'Justice βš–',
  11. 'Hanged Man πŸͺœ', 'Death', 'Temperance πŸ˜‡',
  12. 'Devil 😈', 'Tower πŸ—Ό', 'Star ⭐', 'Moon πŸŒ™',
  13. 'Sun πŸŒ…', 'Judgement 🎺', 'World 🌎',
  14. 'Ace of Wands', 'Two of Wands', 'Three of Wands',
  15. 'Four of Wands', 'Five of Wands', 'Six of Wands',
  16. 'Seven of Wands', 'Eight of Wands', 'Nine of Wands',
  17. 'Ten of Wands', 'Page of Wands', 'Knight of Wands',
  18. 'Queen of Wands', 'King of Wands', 'Ace of Pentacles',
  19. 'Two of Pentacles', 'Three of Pentacles', 'Four of Pentacles',
  20. 'Five of Pentacles', 'Six of Pentacles', 'Seven of Pentacles',
  21. 'Eight of Pentacles', 'Nine of Pentacles', 'Ten of Pentacles',
  22. 'Page of Pentacles', 'Knight of Pentacles', 'Queen of Pentacles',
  23. 'King of Pentacles', 'Ace of Cups', 'Two of Cups',
  24. 'Three of Cups', 'Four of Cups', 'Five of Cups',
  25. 'Six of Cups', 'Seven of Cups', 'Eight of Cups',
  26. 'Nine of Cups', 'Ten of Cups', 'Page of Cups',
  27. 'Knight of Cups', 'Queen of Cups', 'King of Cups',
  28. 'Ace of Swords', 'Two of Swords', 'Three of Swords',
  29. 'Four of Swords', 'Five of Swords', 'Six of Swords',
  30. 'Seven of Swords', 'Eight of Swords', 'Nine of Swords',
  31. 'Ten of Swords', 'Page of Swords', 'Knight of Swords',
  32. 'Queen of Swords', 'King of Swords'
  33.  
  34. ]
  35. return random.choice(answers)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement