Python线程2

import _thread ,time
def child():
    time.sleep(2)
    print("hello from world")
def parent():
        threadvalue=_thread.start_new_thread(child,())
        print(threadvalue)
        print("Main process is finished")

parent()
output

函数_thread.start_new_thread创建一个线程,并且会立马返回一个无用的值

如果主进程结束,不管线程是否完成了工作,所有线程将会立马结束。

你可能感兴趣的:(Python线程2)