python多线程调用exit无法退出的解决方法

时间:2022-11-03 13:45:44

python启用多线程后,调用exit出现无法退出的情况,原因是exit会抛出Systemexit的异常,如果在exit外围调用了try,就会出现ctrl+c两次才能退出的情况

解决方法:

?
1
2
thread.setDaemon(True)
thread.start()

线程启动前设置setDaemon(True)

以上这篇python多线程调用exit无法退出的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/ennismar/article/details/51673612