Advertisement
schoolpiclub

Fortune Teller

May 12th, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #Mary Mags Pi Club Fortune Teller
  2.  
  3. import random
  4. import time
  5.  
  6. print("Welcome to The Mary Mags Fortune Teller")
  7.  
  8. question = input("Would you like me to tell you your fortune?\n")
  9. colour = input("Think of a colour\n")
  10.  
  11. print("I will now select a fortune based on your selection of ", colour)
  12.  
  13. time.sleep(2)
  14.  
  15. fortunes = ("You have a secret admirer",
  16. "Good things will happen if you learn to code",
  17. "You will get a surprise soon")
  18.  
  19. print(random.choice(fortunes))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement