Created
February 18, 2019 05:23
-
-
Save Ventsislav-Yordanov/f9eb9372847419c047b8b2af25d41e8c 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
try: | |
print(sorted([1, 2, 3])) | |
except Exception as error: | |
print("Something went wrong") | |
print(error) | |
else: | |
print("Nothing went wrong") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment