Last active
August 29, 2015 14:06
-
-
Save josephmosby/e0ec7f29aebe6eda4c38 to your computer and use it in GitHub Desktop.
Python exercise with lists
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
presidents = ["George Washington", "Thomas Jefferson", "Theodore Roosevelt", "Abraham Lincoln", "William Howard Taft"] | |
for president in presidents: | |
print president | |
if president == "Teddy Roosevelt": | |
print "Teddy wins!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment