Skip to content

Instantly share code, notes, and snippets.

@edenau
Created January 1, 2020 20:33
Show Gist options
  • Save edenau/cd1e2738b224feb40e2e8318f82b4a94 to your computer and use it in GitHub Desktop.
Save edenau/cd1e2738b224feb40e2e8318f82b4a94 to your computer and use it in GitHub Desktop.
for i in range(2):
try:
print(i)
finally:
print('A sentence.')
continue
print('This never shows.')
# Python <= 3.7
>> SyntaxError: 'continue' not supported inside 'finally' clause
# Python 3.8
>> 0
A sentence.
1
A sentence.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment