Skip to content

Instantly share code, notes, and snippets.

@eyaltrabelsi
Created July 6, 2019 06:14
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 eyaltrabelsi/deb323c987c564610a45f3a1a8764caa to your computer and use it in GitHub Desktop.
Save eyaltrabelsi/deb323c987c564610a45f3a1a8764caa to your computer and use it in GitHub Desktop.
Python trick why else construct
i = 5
while i > 1:
print("Whil-ing away!")
i -= 1
if i == 3:
break
else:
print("Finished up!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment