Created
February 16, 2022 10:16
-
-
Save anandtripathi5/7128e5c5e46adfe9f09dd8996dbae09f to your computer and use it in GitHub Desktop.
Zen of python - Complex is better than complicated
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
counter = 0 | |
while counter < 5: | |
print counter | |
counter += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment