-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpp size increaser.py
44 lines (31 loc) · 1.04 KB
/
pp size increaser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pp size enhancer 1.0
import sys
import time
var = 1
dialogue_startengine = "Starting infinity engine 1 . . . 2 . . . 3 . . . ENGINE STARTED!"
def engine_start():
for i in dialogue_startengine:
sys.stdout.write(i)
sys.stdout.flush()
time.sleep(0.07)
pp_size = float(input("What is your pp size? "))
choice = str(input("Would you like to increase your pp size? YES [y] NO [n] "))
while var==1:
if choice in ['y', 'Y']:
var = 0
choice_1 = str(input("By how much? INFINITY [x] Nothing [n] "))
if choice_1 in ['x', 'X']:
engine_start()
while True:
pp_size = pp_size + 1
print("Your pp is now %s inches long" %pp_size)
elif choice_1 in ['n', 'N']:
print("Alright")
else:
print("I didn't understand that")
elif choice in ['n', 'N']:
print("Ok")
var = 0
else:
print("I didn't understand that")
#END