Python批量启动多线程代码实例


Posted in Python onFebruary 18, 2020

这篇文章主要介绍了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 相关文章推荐
Python设计模式之抽象工厂模式
Aug 25 Python
Python使用Matplotlib模块时坐标轴标题中文及各种特殊符号显示方法
May 04 Python
解决csv.writer写入文件有多余的空行问题
Jul 06 Python
Flask实现跨域请求的处理方法
Sep 27 Python
用python生成1000个txt文件的方法
Oct 25 Python
python multiprocessing模块用法及原理介绍
Aug 20 Python
python利用dlib获取人脸的68个landmark
Nov 27 Python
Python类继承和多态原理解析
Feb 05 Python
使用Django和Postgres进行全文搜索的实例代码
Feb 13 Python
Python爬取365好书中小说代码实例
Feb 28 Python
Python爬取网站图片并保存的实现示例
Feb 26 Python
Python Pandas常用函数方法总结
Jun 15 Python
基于pytorch padding=SAME的解决方式
Feb 18 #Python
Python中pyecharts安装及安装失败的解决方法
Feb 18 #Python
Python chardet库识别编码原理解析
Feb 18 #Python
解决pytorch-yolov3 train 报错的问题
Feb 18 #Python
利用PyQt中的QThread类实现多线程
Feb 18 #Python
python 对任意数据和曲线进行拟合并求出函数表达式的三种解决方案
Feb 18 #Python
Python识别html主要文本框过程解析
Feb 18 #Python
You might like
WordPress迁移时一些常见问题的解决方法整理
2015/11/24 PHP
[原创]PHP实现字节数Byte转换为KB、MB、GB、TB的方法
2017/08/31 PHP
javascript语句中的CDATA标签的意义
2007/05/09 Javascript
JavaScript XML实现两级级联下拉列表
2008/11/10 Javascript
Mootools 1.2教程 定时器和哈希简介
2009/09/15 Javascript
js获取元素到文档区域document的(横向、纵向)坐标的两种方法
2013/05/17 Javascript
Javascript学习笔记之 对象篇(一) : 对象的使用和属性
2014/06/24 Javascript
JavaScript实现二分查找实例代码
2017/02/22 Javascript
使用 Vue 绑定单个或多个 Class 名的实例代码
2018/01/08 Javascript
vue.extend与vue.component的区别和联系
2018/09/19 Javascript
微信小程序组件传值图示过程详解
2019/07/31 Javascript
微信小程序列表时间戳转换实现过程解析
2019/10/12 Javascript
从Node.js事件触发器到Vue自定义事件的深入讲解
2020/06/26 Javascript
详解Vue.js 响应接口
2020/07/04 Javascript
Python实现监控程序执行时间并将其写入日志的方法
2015/06/30 Python
使用Python3编写抓取网页和只抓网页图片的脚本
2015/08/20 Python
利用Celery实现Django博客PV统计功能详解
2017/05/08 Python
python使用Tesseract库识别验证
2018/03/21 Python
python xlsxwriter创建excel图表的方法
2018/06/11 Python
pandas 条件搜索返回列表的方法
2018/10/30 Python
解决django前后端分离csrf验证的问题
2019/02/03 Python
python 实现在tkinter中动态显示label图片的方法
2019/06/13 Python
django使用F方法更新一个对象多个对象字段的实现
2020/03/28 Python
Python 如何批量更新已安装的库
2020/05/26 Python
canvas实现俄罗斯方块的方法示例
2018/12/13 HTML / CSS
远程研修随笔感言
2014/02/10 职场文书
大学生军训感想
2014/02/16 职场文书
人事部经理岗位职责
2014/03/07 职场文书
入党自荐书范文
2014/03/09 职场文书
学习优秀党员杨宗兴先进事迹材料思想汇报
2014/09/14 职场文书
给客户的检讨书
2014/12/21 职场文书
综合素质评价自我评价
2015/03/06 职场文书
初中同学会致辞
2015/08/01 职场文书
JavaScript数组 几个常用方法总结
2021/11/11 Javascript
JS封装cavans多种滤镜组件
2022/02/15 Javascript
Nginx如何获取自定义请求header头和URL参数详解
2022/07/23 Servers