Skip to content

Instantly share code, notes, and snippets.

@batok
Created March 11, 2009 15:33
Show Gist options
  • Save batok/77525 to your computer and use it in GitHub Desktop.
Save batok/77525 to your computer and use it in GitHub Desktop.
while [x for x in range(100) if x%2 == 0]:
print x
for x in range(100):
if x%2 == 0:
print x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment