Python - Exception Handling Fundamentals
What will be the output of this code?
try:
x = int('abc')
except ValueError:
print('ValueError caught')
except Exception:
print('General exception caught')