Answers for "try catch in py"

1

try except python

try:
    Age = int(input("Your Age:- "))
except ValueError:
    print("Age not in Intger form")
Posted by: Guest on June-24-2021
2

python try except

try:
  val = 1/0 
except Exception as e:
  raise Exception('ZeroDivisionError')
Posted by: Guest on January-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language