Python - Advanced Exception Handling
What will be the output of the following code?
try:
print("Start")
x = 1 / 1
except ZeroDivisionError:
print("Error")
else:
print("No Error")
print("End")