Answers for "try catch within try catch python"

2

python try except

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

try except python

age = input('age:')


try:
    new_age = int(age)
except ValueError: # if age is not convertable to int
    print('please enter a number...')
Posted by: Guest on February-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language