多线程退出问题

时间:2019-07-08 06:50:10

标签: python multithreading exit

我在funcs / head.py中有两个文件run.py和头文件 我在多线程中不断从run.py中的head.py调用函数 我在运行的该函数中有一个if语句,但是如果该if语句发生,我希望它退出所有线程并退出程序,但是我不只是继续

已尝试sys.exit()exit()os._exit()

    if response in data:
        print("Attempting Claim: [%s]\n" % (gt))
        left_click(1366/3, 470)
        keyboard.write(gt + "\n",delay=0.01)
        sys.exit(0)

我想我想要的是在主线程上执行退出命令,假设那会退出程序,但是我不太确定。

0 个答案:

没有答案