Python - Exception Handling Fundamentals
Identify the problem in this code snippet:
try:
x = 5 / 0
except ValueError:
print('Value error caught')try:
x = 5 / 0
except ValueError:
print('Value error caught')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions