Skip to content

Instantly share code, notes, and snippets.

@laurakelly
Created September 1, 2012 07:51
Show Gist options
  • Save laurakelly/3566744 to your computer and use it in GitHub Desktop.
Save laurakelly/3566744 to your computer and use it in GitHub Desktop.
print odd numbers in python
for number in range(0, 100):
if not number % 2 == 0:
print number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment