Skip to content

Instantly share code, notes, and snippets.

@yuheiomori
Created May 5, 2012 06:26
Show Gist options
  • Save yuheiomori/2600311 to your computer and use it in GitHub Desktop.
Save yuheiomori/2600311 to your computer and use it in GitHub Desktop.
CodeEval Odd Numbers
print '\n'.join([str(i) for i in range(1, 100) if i % 2 != 0])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment