Created
May 28, 2011 20:01
-
-
Save Telltak/997176 to your computer and use it in GitHub Desktop.
This file contains 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
print "So you want to call a baby ugly?" | |
def parent(parent): | |
print "If the {0} strong or able to beat you up?".format(parent) | |
print "Say N if you're not sure" | |
answer=raw_input("Y or N: ") | |
if answer == "Y": | |
return True | |
else: | |
return False | |
father=parent("father") | |
if father == True: | |
mother=parent("mother") | |
if mother == True: | |
print "Go ahead, you bastard" | |
else: | |
print "Don't bother. It'll only end in pain for you." | |
else: | |
print "Don't bother. It'll only end in pain for you." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment