Created
December 6, 2011 06:45
-
-
Save hidsh/1437092 to your computer and use it in GitHub Desktop.
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
import sys | |
Morpheous = "You take the blue pill and the story ends, you wake up in your bed and believe whatever you want to believe. You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes." | |
def which_do_you_choose(your_mind): | |
return 'red pill' if your_mind == 'believe' else 'blue pill' | |
def enter_the_matrix(): | |
while True: | |
for c in Morpheous: | |
print ord(c), | |
print Morpheous | |
if which_do_you_choose(raw_input('Neo:')) == 'blue pill': | |
print " you've waken up in pseudo world." | |
sys.exit() | |
else: | |
enter_the_matrix() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment