Python - Exception Handling Fundamentals
What will be the output of this code?
try:
num = int('abc')
except ValueError:
print('Value error caught')
except TypeError:
print('Type error caught')