Python - Exception Handling Fundamentals
What will be the output of the following code?
try:
print('Start')
x = 5 / 0
print('End')
except ZeroDivisionError:
print('Error caught')
print('Done')