Skip to content

Instantly share code, notes, and snippets.

@Telltak
Created May 28, 2011 20:01
Show Gist options
  • Save Telltak/997176 to your computer and use it in GitHub Desktop.
Save Telltak/997176 to your computer and use it in GitHub Desktop.
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