1import time #this and time.sleep() is optional, I am just using it
2
3#game
4print('CoolKitty Presents')
5time.sleep(2)
6print('Text Game')
7print('1 Start')
8print('2 Exit')
9start = int(input('Press Binded Number')) #this creates an input in the console for users to type
10if start == 1: #If the user typed in 1
11 print('Go To Place 1 Or Place 2?') #your script
12 place = int(input('Place 1 Or Place 2?')) #creates another input in console
13 if place == 1: #If they typed 1
14 print('You are at place 1') #your script
15 exit() # ends script
16 if place == 2:
17 print('You are at place 2') #your script
18 exit() #ends script
19if start == 2: # If 2 is typed in, you can also do more numbers then 2!
20 exit() #ends program, repl.it might say have died, but that is normal.
1x1=0
2x2=0
3x3=0
4x4=0
5x5=8
6x6=0
7x7=0
8x8=0
9x9=0
10for x in "banana":
11 print(x1, x2, x3)
12 print(x4, x5, x6)
13 print(x7, x8, x9)
14 ducky=input("what to do ")
15 if ducky == "left":
16 x6=8
17 x5=0
18 print('\033[H\033[J', end='')