我有一个用线程运行的程序,如下所示:
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