Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Magic8Ball
- import random
- messages = ['It is certain',
- 'It is decidedly so',
- 'Yes definitely',
- 'Reply hazy, try again',
- 'Ask again later',
- 'Concentrate and ask again',
- 'My reply is no',
- 'Outlook not so good',
- 'Very doubtful']
- print(messages[random.randint(0,len(messages) -1)])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement