gpt4 book ai didi

python - 为什么 KeyboardInterrupt 在 python 中不起作用?

转载 作者:太空狗 更新时间:2023-10-29 21:12:35 24 4
gpt4 key购买 nike

为什么像下面这样的代码不能捕获 CTRL-C?

MAXVAL = 10000
STEP_INTERVAL = 10

for i in range(1, MAXVAL, STEP_INTERVAL):
try:
print str(i)
except KeyboardInterrupt:
break

print "done"

我的期望是——如果在程序运行时按下 CTRL-C,KeyboardInterrupt 应该退出循环。它没有。

对我做错了什么有什么帮助吗?

最佳答案

听起来程序在按下 control-c 时已完成,但您的操作系统尚未完成向您显示所有输出。 .

关于python - 为什么 KeyboardInterrupt 在 python 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/543534/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com