Created
February 22, 2020 06:27
-
-
Save workze/7ccb8f4a65b3c6dc7d676a95a8532d8a to your computer and use it in GitHub Desktop.
python range
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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