Created
January 1, 2020 20:33
-
-
Save edenau/cd1e2738b224feb40e2e8318f82b4a94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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