Python - Exception Handling Fundamentals
Identify the syntax error in this Python code:
try:
result = 5 + '5'
except TypeError:
print('Type error occurred')try:
result = 5 + '5'
except TypeError:
print('Type error occurred')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions