Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:33
Show Gist options
  • Save shifatul-i/587bfdc151fd173b6d80a5b3d1ed74e9 to your computer and use it in GitHub Desktop.
Save shifatul-i/587bfdc151fd173b6d80a5b3d1ed74e9 to your computer and use it in GitHub Desktop.
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