Created
June 18, 2011 21:14
-
-
Save Jire/1033513 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
fish = raw_input("Enter a fish name: ") | |
if fish == "fish": | |
print "you are awesome" | |
print "...seriously!" | |
elif fish == "slamon": | |
print "I hope I don't get SLAMonilla poissin" | |
elif fish == "bass": | |
print "easy there bass boat" | |
else: | |
print "you are lame" | |
print "...noob" | |
raw_input("Press <enter>") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment