This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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') |