-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex31.py
33 lines (25 loc) · 1006 Bytes
/
ex31.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
print "you enter a dark room with two doors.do you go through door #1 or door #2??"
door = raw_input(">")
if door == "1":
print "there is a giant bear eating a cheese cake.what do u do?"
print "1 .take the cake"
print "2. scream at the bear."
bear = raw_input(">")
if bear == "1":
print "the bear eats ur face good job"
elif bear == "2":
print "the bear eats ur legs off good job"
else:
print "well, doing %s is probably better.the bear run away" % bear
elif door =="2":
print "u stare into the endless abyss at cthulhu's retina"
print "1. blueberries"
print "2. yellow jacket clothenspins"
print "3. understanding revolvers yelling melodies"
insanity = raw_input(">")
if insanity == "1" or insanity == "2":
print "ur body survives powered by a mind of jello.good job"
else:
print "the insanity rots ur eyes into the pool of muck.good job"
else:
print "u stable into a knife and killed urself"