如何杀死使用thread.start_new_thread启动的线程

时间:2017-12-20 23:23:33

标签: windows multithreading python-2.7

如何杀死使用thread.start_new_thread启动的线程?谢谢!

import thread

def test_thread():
    for i in range(100):
       sleep(1)
       print('time %r' % time())
    print('%r' % 'thread is done')

thread.start_new_thread(test_thread,())

1 个答案:

答案 0 :(得分:0)

Here是我的问题的解决方案,其中线程可以暂停并按需恢复。