Skip to content

Instantly share code, notes, and snippets.

@ssbb
Created December 19, 2015 20:14
Show Gist options
  • Save ssbb/40367a5ce172b0c0843a to your computer and use it in GitHub Desktop.
Save ssbb/40367a5ce172b0c0843a to your computer and use it in GitHub Desktop.
items = [1, 2, 3]
while items:
item = items.pop(0)
print('Processing item: {}'.format(item))
tries = 0
while tries < 4:
try:
raise Exception('My Exception')
pass # do something
except Exception:
print('error')
tries += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment