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

溫馨提示×

溫馨提示×

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

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

Python如何批量啟動多線程

發布時間:2021-08-03 10:52:34 來源:億速云 閱讀:368 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Python如何批量啟動多線程,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

建立一個線程池,并將某個線程放入進去

threadpool = []
th = threading.Thread(target=func_name, args=func_args)
threadpool.append(th)

批量加入線程

for i in range(10):
  th = threading.Thread(target=func_name, args=func_args)
  threadpool.append(th)

批量開始線程

for th in threadpool:
    th.start()
for th in threadpool:
  threading.Thread.join(th)

實例如下:

#!/usr/bin/python3.4
# -*- coding: utf-8 -*-

import time
import threading


def matter1(music, test):
  print(test, music)
  # 假設每一首歌曲的時間是2秒
  time.sleep(2)

if __name__ == '__main__':
  # 設定我要聽的歌為
  musics = ["music1", "music2", "music3"]
  test = "122678"
  # 開始時間
  start = time.time()

  threadpool = []

  # 傳入多個參數
  for music in musics:
    # 傳入單個參數請寫成
    # args=(arg1,)
    th = threading.Thread(target=matter1, args=(music, test))
    threadpool.append(th)
  for th in threadpool:
    th.start()
  for th in threadpool:
    threading.Thread.join(th)

  # 結束時間
  end = time.time()
  print("完成的時間為:" + str(end - start))

完成同時聽三首歌線程,花費時間 2s:

關于“Python如何批量啟動多線程”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

磐安县| 定日县| 铜川市| 广安市| 新巴尔虎右旗| 宝坻区| 阿拉善左旗| 赤壁市| 青州市| 邯郸市| 新乐市| 仙桃市| 怀来县| 吴江市| 阿坝县| 沧源| 睢宁县| 长宁县| 镇原县| 黔南| 海原县| 平安县| 卓资县| 旌德县| 新邵县| 汪清县| 长治县| 剑阁县| 海南省| 涟水县| 吴堡县| 江永县| 彩票| 合江县| 彰武县| 巍山| 磐石市| 邵阳县| 佛教| 安庆市| 安西县|