Skip to content

Instantly share code, notes, and snippets.

@josephmosby
Last active August 29, 2015 14:06
Show Gist options
  • Save josephmosby/e0ec7f29aebe6eda4c38 to your computer and use it in GitHub Desktop.
Save josephmosby/e0ec7f29aebe6eda4c38 to your computer and use it in GitHub Desktop.
Python exercise with lists
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