Created
October 3, 2019 19:33
-
-
Save shifatul-i/587bfdc151fd173b6d80a5b3d1ed74e9 to your computer and use it in GitHub Desktop.
This file contains 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
count = 0 | |
# Prints out 0,1,2,3,4 | |
while count < 5: | |
print(count) | |
count += 1 # This is the same as count = count + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment