Python - Exception Handling Fundamentals
Find the error in this code snippet:
try:
print(10 / 0)
except ZeroDivisionError, e:
print('Error:', e)try:
print(10 / 0)
except ZeroDivisionError, e:
print('Error:', e)15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions