這篇文章主要介紹python多線程中的threading怎么用,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供朗縣網(wǎng)站建設(shè)、朗縣做網(wǎng)站、朗縣網(wǎng)站設(shè)計(jì)、朗縣網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、朗縣企業(yè)網(wǎng)站模板建站服務(wù),十載朗縣做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
threading模塊的主要應(yīng)用:
多線程啟動
# 多線程啟動 import os import time from threading import Thread def func(): time.sleep(1) print('hello 線程', os.getpid()) t = Thread(target=func) t.start() print(os.getpid()) # 結(jié)果 # 6360 # hello 線程 6360
同步開啟多線程
# 同步開啟多線程 import os import time from threading import Thread def func(): time.sleep(1) print('hello 線程', os.getpid()) thread_l = [] for i in range(10): t = Thread(target=func) t.start() thread_l.append(t) for j in thread_l: j.join() print(os.getpid())
以上是python多線程中的threading怎么用的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
新聞名稱:python多線程中的threading怎么用
分享鏈接:http://www.rwnh.cn/article48/jcgjhp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、自適應(yīng)網(wǎng)站、網(wǎng)站設(shè)計(jì)、做網(wǎng)站、微信公眾號、全網(wǎng)營銷推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)