Python - Custom Exceptions
Which of the following try-except blocks correctly catches all exceptions derived from
Exception but excludes SystemExit and KeyboardInterrupt?Exception but excludes SystemExit and KeyboardInterrupt?Exception is a subclass of BaseException that excludes system-exiting exceptions like SystemExit and KeyboardInterrupt.Exception, excluding system-exiting ones. try:
pass
except BaseException:
pass catches all exceptions including system-exiting. Options C and D catch only specific exceptions.Exception to exclude system-exiting exceptions [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions