Advertisement
jabela

Magic 8 Ball Text Only

Dec 17th, 2015
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. import random
  2. import time
  3. print('Ask a yes/no question')
  4. time.sleep(2)
  5. replies = ['Signs point to yes',
  6.         'Without a doubt',
  7.         'You may rely on it',
  8.         'Do not count on it',
  9.         'Looking good',
  10.         'Cannot predict now',
  11.         'It is decidedly so',
  12.         'Outlook not so good']
  13.  
  14. print(random.choice(replies))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement