error handling pyton code example
Example 1: error handling Pyhtin
try:
age = int(input("Please enter your age: "))
print(age)
except:
print("please enter a number instead! ")
print('bye')
while True:
try:
age = int(input("Please enter your age: "))
print(age)
except:
print("please enter a number instead! ")
else:
break
Example 2: error handling in python
try:
print(x)
except SyntaxError:
print("There is a SyntaxError in your code")
except NameError:
print("There is a NameError in your code")
except TypeError:
print("There is a TypeError in your code")