Skip to content

Instantly share code, notes, and snippets.

@lakshay-arora
Created April 9, 2020 07:35
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 lakshay-arora/42002c8456908e3e4a7b00c0dda8fb3e to your computer and use it in GitHub Desktop.
Save lakshay-arora/42002c8456908e3e4a7b00c0dda8fb3e to your computer and use it in GitHub Desktop.
# define a function to divide two numbers
def division(a, b):
# use the try statement where error may occur
try:
return a/b
# if the error occurs, handle it !!
except ZeroDivisionError:
print("Cannot divide by Zero!!")
division(10,5)
## >> 2
division(10,0)
## >> Cannot divide by Zero!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment