gpt4 book ai didi

python - 在终止 python 程序时做一些事情

转载 作者:太空狗 更新时间:2023-10-30 01:05:43 26 4
gpt4 key购买 nike

我想让一个 python 脚本做一些事情,比如在终止它之前发布一条消息。我已经尝试过 signal 并且当我在 cmd 窗口中输入 Ctrl+c 时它起作用了。但是,当我直接关闭 cmd 窗口或从 Windows 任务管理器中终止进程时,它似乎不起作用。那么在上述情况下我怎样才能达到我的目标呢?感谢所有建议!

最佳答案

看看 atexit 模块:

http://docs.python.org/library/atexit.html

例子:

import atexit

def exit_handler():
print('My program just quit')

atexit.register(exit_handler)

关于python - 在终止 python 程序时做一些事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42696839/

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