Answers for "python when can you use a try / except block"

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

Code answers related to "python when can you use a try / except block"

Python Answers by Framework

Browse Popular Code Answers by Language