Answers for "calling exception in python"

0

try except python

def sum_of(x, y):
  try:
    print(x + y)
  except TypeError:
    print("Invalid argument specified.")
Posted by: Guest on September-25-2020
-2

python: raise error

class MyError(TypeError):
    pass

raise MyError('An error happened')
Posted by: Guest on August-10-2020

Code answers related to "calling exception in python"

Python Answers by Framework

Browse Popular Code Answers by Language