如何覆盖键盘中断? (Python)

发布于 2024-11-28 17:06:30 字数 60 浏览 1 评论 0原文

无论如何,当脚本运行时按下 Ctrl+c 时,我是否可以使脚本执行我的函数之一?

Is there anyway I can make my script execute one of my functions when Ctrl+c is hit when the script is running?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风流物 2024-12-05 17:06:30

查看信号处理程序。 CTRL-C 对应于 SIGINT(posix 系统上的信号 #2)。

例子:

#!/usr/bin/env python
import signal
import sys
def signal_handler(signal, frame):
    print("You pressed Ctrl+C - or killed me with -2")
    sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
print("Press Ctrl+C")
signal.pause()

Take a look at signal handlers. CTRL-C corresponds to SIGINT (signal #2 on posix systems).

Example:

#!/usr/bin/env python
import signal
import sys
def signal_handler(signal, frame):
    print("You pressed Ctrl+C - or killed me with -2")
    sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
print("Press Ctrl+C")
signal.pause()
開玄 2024-12-05 17:06:30

当然。

try:
  # Your normal block of code
except KeyboardInterrupt:
  # Your code which is executed when CTRL+C is pressed.
finally:
  # Your code which is always executed.

Sure.

try:
  # Your normal block of code
except KeyboardInterrupt:
  # Your code which is executed when CTRL+C is pressed.
finally:
  # Your code which is always executed.
迷离° 2024-12-05 17:06:30

使用 KeyboardInterrupt 异常 并在 except< 中调用您的函数/代码> 块。

Use the KeyboardInterrupt exception and call your function in the except block.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文