Skip to content

Instantly share code, notes, and snippets.

@eggplants
Last active May 1, 2022 02:38
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 eggplants/c92d715eb195c1841256f2b0e91f5dc6 to your computer and use it in GitHub Desktop.
Save eggplants/c92d715eb195c1841256f2b0e91f5dc6 to your computer and use it in GitHub Desktop.
n = 3
_e = None
for i in range(n):
print("attempt:", n)
try:
# ...
# sth to do with possibility to fail
# ...
break
except Exception as e:
_e = e
pass
else: # will be ignored without fail
raise _e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment