Answers for "what to do when exception is caught 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

Code answers related to "what to do when exception is caught in python"

Python Answers by Framework

Browse Popular Code Answers by Language