亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python3爬蟲怎么統計多線程的運行

發布時間:2020-11-25 09:38:44 來源:億速云 閱讀:238 作者:小新 欄目:編程語言

小編給大家分享一下python3爬蟲怎么統計多線程的運行,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!


線程的基本統計

 import threading

def main():
   print(threading.active_count()) # 統計現在有多少個激活的線程
   print(threading.enumerate())    # 是哪幾個激活的線程:名字
   print(threading.current_thread()) # 現在正在運行的線程

if __name__ == '__main__':
main()

輸出結果為

5
[<_MainThread(MainThread, started 21440)>, <Thread(Thread-4, started daemon 15276)>, <Heartbeat(Thread-5, started daemon 17844)>, <HistorySavingThread(IPythonHistorySavingThread, started 13528)>, <ParentPollerWindows(Thread-3, started daemon 21116)>]
<_MainThread(MainThread, started 21440)>

表示有5個已經active的threading,一個是mainthread,另外是thread-4、thread-5、thead-3、savingThread;正在運行的是主線程。

拓展:增加target和傳參args

def thread_job():
    print("This is an added thread, numbet is %s."%threading.current_thread())
 
def main1():
    # added_thread = threading.Thread() # 添加的線程,尚未給它工作
    added_thread = threading.Thread(target=thread_job) # 添加的線程,同時給它定義一個工作,通過target傳進去工作內容,
    # 同時加上執行的語句 .start() 運行
    added_thread.start()
 
if __name__ == '__main__':
main1()

運行結果

This is an added thread, numbet is <Thread(Thread-9, started 13780)>.

以上是“python3爬蟲怎么統計多線程的運行”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

岐山县| 南召县| 墨竹工卡县| 岗巴县| 都兰县| 石泉县| 于都县| 东乡族自治县| 扎鲁特旗| 昭苏县| 抚州市| 吉隆县| 巨鹿县| 宜城市| 察哈| 翁牛特旗| 永丰县| 南昌县| 辽中县| 侯马市| 象山县| 兴隆县| 贵德县| 麻江县| 巴南区| 定陶县| 黄山市| 静宁县| 英德市| 宝应县| 云龙县| 连云港市| 黄骅市| 徐闻县| 涞源县| 普格县| 长汀县| 剑川县| 武邑县| 青浦区| 珠海市|