Catching All Exceptions (Generic Exception)
Mon 10 August 2026
try:
risky_operation()
except Exception as e:
print("Error occurred:", e)
Error occurred: name 'risky_operation' is not defined
Score: 10
Category: chapter6_exception_handling