Python - Advanced Exception Handling
What will be the output of this code?
try:
print('Start')
x = 1 / 0
except ZeroDivisionError:
print('Error caught')
finally:
print('Always runs')