91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

丹凤县| 苍溪县| 湘潭县| 无为县| 根河市| 济南市| 淮北市| 甘南县| 哈尔滨市| 盐城市| 望江县| 邳州市| 遵化市| 庄河市| 通州区| 海南省| 象山县| 乌恰县| 益阳市| 托克托县| 攀枝花市| 道真| 乐陵市| 天津市| 淅川县| 宁河县| 张家口市| 电白县| 沈阳市| 民县| 兴宁市| 广水市| 舞钢市| 义乌市| 灵寿县| 侯马市| 土默特右旗| 绵阳市| 桐庐县| 吴桥县| 文昌市|