Skip to content

Instantly share code, notes, and snippets.

@edenau
Created January 19, 2020 02:09
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 edenau/1516a468779d3c36d3c68765b0916ed5 to your computer and use it in GitHub Desktop.
Save edenau/1516a468779d3c36d3c68765b0916ed5 to your computer and use it in GitHub Desktop.
for a in range(5):
if a == 2:
continue
print(a)
# 0
# 1
# 3
# 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment