Python - Exception Handling Fundamentals
What will be the output of this code?
try:
print(10 / 2)
except Exception:
print('Error occurred')
else:
print('No errors')