-1
thread.start_new_thread로 시작한 스레드를 어떻게 죽입니까? 고맙습니다!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,())
일시 중지 또는 다시 시작하지 않고 종료하고 싶습니다. – Valentyn