Advertisement
rejohnson547

LPTHW making decisions 3/26/2015

Mar 26th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.06 KB | None | 0 0
  1.  
  2. print('You enter a dark room with two doors. Do you go through door #1 or door #2?')
  3.  
  4. door = input('> ')
  5.  
  6. if door == '1':
  7.     print("There's a giant bear here eating a cheese cake. What do you do?")
  8.     print('1. Take the cake.')
  9.     print('2. Scream at the bear.')
  10.  
  11.     bear = input('> ')
  12.     if bear == '1':
  13.         print('The bear eats your face off. Good job!')
  14.     elif bear == '2':
  15.         print('The bear eats your legs off. Good job!')
  16.     else:
  17.         print('Well, doing %s is probably better. Bear runs away.' % bear )
  18. elif door == '2':
  19.     print("You stare into the endless abyss at Cthulu's retina.")
  20.     print('1. Blueberries.')
  21.     print('2. Yellow jacket clothespins.')
  22.     print('3. Understanding revolvers yelling melodies.')
  23.  
  24.     insanity = input('> ')
  25.  
  26.     if insanity == '1' or insanity == '2':
  27.         print('Your body survives powered by a mind of jello. Good job!')
  28.     else:
  29.         print('The insanity rots your eyes into a pool of muck. Good job!')
  30.  
  31. else:
  32.     print('You stumble around and fall on a knife and die. Good job!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement