使用python停止python程序

时间:2018-04-02 23:26:27

标签: python multithreading

我有一个用线程运行的程序,如下所示:

thread.start_new(call_chat_serv, (usr_name, ))

这是呼叫聊天服务:

def call_chat_serv(_name):
    global getting_from_user
    os.system("python.exe Chat.py "+ str(_name))
    while (not getting_from_user):
        pass

现在,当我将用户设置为true时,程序" Chat.py"仍在运行。 我该如何终止这个程序?并且终止我的意思是关闭Chat.py

0 个答案:

没有答案