Skip to content

Instantly share code, notes, and snippets.

@workze
Created February 22, 2020 06:27
Show Gist options
  • Save workze/7ccb8f4a65b3c6dc7d676a95a8532d8a to your computer and use it in GitHub Desktop.
Save workze/7ccb8f4a65b3c6dc7d676a95a8532d8a to your computer and use it in GitHub Desktop.
python range
for i in range(0, 100, 2):
print i
# 0, 2, 4, ... 98
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment