python try except捕获所有异常
Exception
会捕获除了SystemExit
、KeyboardInterrupt
和GeneratorExit
之外的所有异常。 如果你还想捕获这三个异常,将 Exception 改成 BaseException 即可。
Exception
会捕获除了SystemExit
、KeyboardInterrupt
和GeneratorExit
之外的所有异常。 如果你还想捕获这三个异常,将 Exception 改成 BaseException 即可。