Python - Advanced Exception Handling
What will this code print?
try:
x = 5 / 0
except ZeroDivisionError:
print("Caught ZeroDivisionError")
else:
print("No Exception")