gpt4 book ai didi

Python脚本完成退出

转载 作者:行者123 更新时间:2023-12-04 10:31:50 34 4
gpt4 key购买 nike

我目前正在使用 quit() 来结束我的程序,但在执行完成后命令行仍然存在。我如何“杀死”程序?

def ed():
quit()

timer = threading.Timer(time, ed)
timer.start()



指针保持事件状态,就像脚本正在运行一样。

最佳答案

这可以工作:

import os

def ed():
os._exit(1)

关于Python脚本完成退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60389231/

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