Skip to content

Instantly share code, notes, and snippets.

@bulislaw
Last active May 6, 2020 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bulislaw/e26852ab610189e578682445fbb77ded to your computer and use it in GitHub Desktop.
Save bulislaw/e26852ab610189e578682445fbb77ded to your computer and use it in GitHub Desktop.
cnt = 0
while cnt < 100:
print("In da loop \n")
if cnt % 2 == 0:
print("In da loop as well\n")
print("In da loop, cnt = {}\n".format(cnt))
cnt += 1
print("After the loop\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment