MemotivaException handling

What is the difference between except Exception and bare except?

Exception handling

Audio flashcard · 0:14

Nortren·

What is the difference between except Exception and bare except?

0:14

A bare except catches every exception, including KeyboardInterrupt and SystemExit, which is rarely what you want. Except Exception catches all normal exceptions but lets system exits and interrupts pass through. As a rule, never use bare except; always catch a specific class.
docs.python.org