Python3 多线程 学习 threading

Posted 健康一贴灵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 多线程 学习 threading相关的知识,希望对你有一定的参考价值。

#-*- coding:utf-8 --*-
#多线程测试 

import time
import datetime
import threading

def worker():

    print("未用多线程")
    time.sleep(1)

    return

def worker2():
    print("使用多线程")
    time.sleep(1)
    return

if __name__ == "__main__"    :
    d1 = datetime.datetime.now()    
    for i in range(5):
        worker()
    d2 = datetime.datetime.now()
    print(d2-d1)

    d1 = datetime.datetime.now()    
    for j in range(5):
        t = threading.Thread(target = worker2)
        t.start()
    d2 = datetime.datetime.now()
    print(d2 - d1)
    print("current has %d threads" % (threading.activeCount() - 1))

 

以上是关于Python3 多线程 学习 threading的主要内容,如果未能解决你的问题,请参考以下文章

Python3多线程_thread模块的应用

Python3多线程_thread模块的应用

Python3多线程_thread模块的应用

Python3多线程爬虫实例讲解

Python3 多线程编程 threading模块

python3 多线程笔记