Skip to content

Instantly share code, notes, and snippets.

@morganahuber04
Created November 28, 2015 18:13
Show Gist options
  • Select an option

  • Save morganahuber04/8805dbb6d4830bb35de0 to your computer and use it in GitHub Desktop.

Select an option

Save morganahuber04/8805dbb6d4830bb35de0 to your computer and use it in GitHub Desktop.
Untitled.py
from scene import *
import ui
print('Welcome to fortune teller!')
number = input('type a number from 1 - 25')
if number == 1 :
print('you will become a millionare when you are 57 years old')
elif number == 2 :
print('you will become famous in 1 year')
elif number == 3 :
print('you will die earlier than you normally would')
elif number == 4 :
print('you will win the lottery of $5.00')
elif number == 5 :
print ('you will have bad luck the rest of your life')
elif number == 6 :
print ('you will win the lottery of $1.000.000.000')
elif number == 7 :
print('you will find a shining coin')
elif number == 8 :
print('you will come close to death')
elif number == 9 :
print('you will make a new friend')
elif number == 10 :
print('you will have good luck for the rest of your life')
elif number == 11 :
print ('you will have the choice to have an adventoreous life or a life of luxory')
elif number == 12 :
print ('you will win the lottery of $10.000')
elif number == 13 :
print('you will win a very nice vacation')
elif number == 14 :
print('your life will be very strange in 5 years')
elif number == 15 :
print('you will get sued for $100.000')
elif number == 16 :
print('you will cheat death')
elif number == 17 :
print('your social life will improve')
elif number == 18 :
print('a man named Joe will help you with your life')
elif number == 19 :
print('you are close to one of your most emberrasing moment')
elif number == 20 :
print('you will lose something very important to you')
elif number == 21 :
print ('you will be very lucky for the next 5 days')
elif number == 22 :
print('your relatioship with someone will get worse')
elif number == 23 :
print('in the next 5 years you will lose 3 very important things')
elif number == 24 :
print('you will lose something very important')
elif number == 25 :
print('your health will improve')
run(MyScene())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment