怎么中断python代码运行
时间: 2024-03-12 11:20:37 浏览: 190
对Python3使运行暂停的方法详解
在 Python 中,可以使用 `CTRL + C` 快捷键来中断正在运行的代码。或者,你可以在代码中使用 `KeyboardInterrupt` 异常来捕获这个信号并停止代码的执行。例如:
```python
import time
try:
while True:
print("Running...")
time.sleep(1) # 暂停1秒钟
except KeyboardInterrupt:
print("Program stopped by user")
```
这段代码将一直输出 "Running..." 直到用户按下 `CTRL + C`,此时代码将停止执行并输出 "Program stopped by user"。
阅读全文