Skip to content

Instantly share code, notes, and snippets.

@ItsCosmas
Created May 9, 2019 08:32
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 ItsCosmas/62a16a48721c1087c5798a43b7d3bdc9 to your computer and use it in GitHub Desktop.
Save ItsCosmas/62a16a48721c1087c5798a43b7d3bdc9 to your computer and use it in GitHub Desktop.
try:
num = "cos"
num2 = 2
div = num2/num
except ZeroDivisionError:
print("An Error due to zero Division")
except (ValueError, TypeError):
print("An Error occured")
else:
print("The answer is: " + str(div))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment