Picture of the authorDevGrads

Exceptions

Handle errors or unexpected situations gracefully.

Syntax

try:
  # block of code that is expected to throw error
except ErrorName:
  # handling error 

Example

try: 
    result = 15/0
except ZeroDivisionError:
    print("Division by zero is not allowed.")