KeyboardInterrupt当用户按下中断键 (通常为 Control-C 或 Delete) 时将被引发。 在执行期间,会定期检测中断信号。 该异常继承自 BaseException 以确保不会被处理 Exception 的代码意外捕获,这样可以避免退出解释器。本文地址:https://my.lmcjl.com/exception/keyboard-interrupt版权声明:个人博客原创文章,转载请注明出处和网址。,欢迎加入。 继续阅读
Search Results for: KeyboardInterrupt
查询到最新的2条
Python内置异常的类层级结构
BaseException +-- SystemExit +-- KeyboardInterrupt +-- GeneratorExit +-- Exception +-- StopIteration +-- StopAsyncIteration +-- ArithmeticError | +-- FloatingPointError | +-- 继续阅读