Snakes On A Plane
Originally posted at python-forum.org by MikeMcG
import random
print " _________ __"
print "/ _____/ ____ _____ | | __ ____ ______ ____ ____ _____"
print "\_____ \ / \\__ \ | |/ // __ \ / ___/ / _ \ / \ \__ \""
print " / \ | \/ __ \| <\ ___/ \___ \ ( <_> ) | \ / __ \_"
print "/_______ /___| (____ /__|_ \\___ >____ > \____/|___| / (____ /"
print " \/ \/ \/ \/ \/ \/ \/ \/"
print " __________.__"
print " \______ \ | _____ ____ ____"
print " | ___/ | \__ \ / \_/ __ \""
print " | | | |__/ __ \| | \ ___/ "
print " |____| |____(____ /___| /\___ >"
print " \/ \/ \/"
again = "y"
while again == "y":
snakes = ["snakes", "people", "houses", "firefoxes", "celebrities",\
"youngsters", "planes", "boats", "crack"]
plane = ["plane", "snake", "person", "hose", "firefox", "genius", "house",\
"youngster", "boat", "train", "school", "computer", "crack", "internet"]
s = random.randint(0, 8)
p = random.randint(0, 13)
print ""
print "That's it! I've had it with these motherfuckin",snakes[s],"on this"
print "motherfuckin",plane[p],"!"
print ""
again = raw_input("Again? y/n: ")
print
print "Goodbye."