Windows 中的键盘中断?
如何在 Windows 中生成键盘中断?
while True:
try:
print 'running'
except KeyboardInterrupt:
break
我期望 CTRL+C 停止该程序,但它不起作用。
How to generate a KeyboardInterrupt in Windows?
while True:
try:
print 'running'
except KeyboardInterrupt:
break
I expected CTRL+C to stop this program but it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当运行到 Windows 控制台时,您的代码工作正常。
Ctrl+C 生成键盘中断是控制台功能。如果您从 SciTE 等文本编辑器运行它,它将无法工作。
Your code is working ok when ran into a windows console.
Ctrl+C generating a KeyboardInterrupt is a console feature. If you run it from a text editor like SciTE, it will not work.