吴裕雄 python深度学习与实践

Posted 天生自然

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了吴裕雄 python深度学习与实践相关的知识,希望对你有一定的参考价值。

import threading, time

def doWaiting():
    print(\'start waiting:\', time.strftime(\'%S\'))
    time.sleep(3)
    print(\'stop waiting\', time.strftime(\'%S\'))
thread1 = threading.Thread(target = doWaiting)
thread1.start()
time.sleep(1)  #确保线程thread1已经启动
print(\'start join\')
thread1.join() #将一直堵塞,直到thread1运行结束。
print(\'end join\')

 

以上是关于吴裕雄 python深度学习与实践的主要内容,如果未能解决你的问题,请参考以下文章

吴裕雄 python深度学习与实践

吴裕雄 python深度学习与实践

吴裕雄 python深度学习与实践

吴裕雄 python深度学习与实践

吴裕雄 python深度学习与实践(17)

吴裕雄 python深度学习与实践(15)