Skip to content

Instantly share code, notes, and snippets.

@stevencombs
Created August 12, 2013 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevencombs/6215605 to your computer and use it in GitHub Desktop.
Save stevencombs/6215605 to your computer and use it in GitHub Desktop.
# Print every definition in a dictionary
# A Codecademy Python (Control Flow and Looping) assignment
# Dr. Steven B. Combs, coding novice
a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
for number in a:
if number % 2 == 0: # If divisible by two, the number is even
print number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment