Answers for "what is a try and except in python?"

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
0

python try

try:
    print(x)
except:
    print("Err")
Posted by: Guest on February-17-2021

Code answers related to "what is a try and except in python?"

Python Answers by Framework

Browse Popular Code Answers by Language