Python进度条tqdm你值得拥有(python2 进度条)
off999 2024-09-14 07:15 67 浏览 0 评论
前言
之所以了解到了这个,是因为使用了一个依赖tqdm的包,然后好奇就查了一下。对于python中的进度条也是经常使用的,例如包的安装,一些模型的训练也会通过进度条的方式体现在模型训练的进度。总之,使用进度条能够更加锦上添花,提升使用体验吧。至于更多tqdm内容可以参考tqdm官网[1]下面就来看看吧。
tqdm
1 简单了解
先来看看效果,使用循环显示一个智能的进度条-只需用tqdm(iterable)包装任何可迭代就可完成,如下:
tqdm运行
相关代码如下:
import tqdm
import time
for i in tqdm.tqdm(range(1000)):
time.sleep(0.1)
官方也给了一张图,来看看:
run2
看起来还不错吧,现在我们详细地了解一下。
2 使用
安装就不用说了,使用pip install tqdm即可。tqdm主要有以下三种用法。
2.1 基于迭代器的(iterable-based)
使用案例如下,使用tqdm()传入任何可迭代的参数:
from tqdm import tqdm
from time import sleep
text = ""
for char in tqdm(["a", "b", "c", "d"]):
sleep(0.25)
text = text + char
tqdm(range(i))的一个特殊优化案例:
from time import sleep
from tqdm import trange
for i in trange(100):
sleep(0.01)
这样就可以不同传入range(100)这样的迭代器了,trange()自己去构建。 除此之外,可以用tqdm()在循环外手动控制一个可迭代类型,如下:
pbar = tqdm(["a", "b", "c", "d"])
for char in pbar:
sleep(0.25)
pbar.set_description("Processing %s" % char)
这里还使用了.set_description(),结果如下:
Processing d: 100%|██████████| 4/4 [00:01<00:00, 3.99it/s]
相关参数容后再介绍。
2.2 手工操作(Manual)
使用with语句手动控制tqdm的更新,可以根据具体任务来更新进度条的进度。
with tqdm(total=100) as pbar:
for i in range(10):
sleep(0.1)
pbar.update(10)
当然with这个语句想必大家都知道(想想使用with打开文件就知道了),也可以不使用with进行,则有如下操作:
pbar = tqdm(total=100)
for i in range(10):
sleep(0.1)
pbar.update(10)
pbar.close()
那么这个时候,就不要忘了在结束后关闭,或者del tqdm对象了。
2.3 模块(Module)
也许tqdm的最妙用法是在脚本中或在命令行中。只需在管道之间插入tqdm(或python -m tqdm),即可将所有stdin传递到stdout,同时将进度打印到stderr。具体如何操作,我们来看看,下面也是官方给出的例子。 以下示例演示了对当前目录中所有Python文件中的行数进行计数,其中包括计时信息。(为了能够在windows系统中使用linux命令,这是使用git打开),也是当前项目路径。
time find . -name '*.py' -type f -exec cat \{} \; | wc -l
linux命令补充: time[2],find[3](-exec 使用其后参数操作查找到的文件);wc[4].
使用tqdm命令来试一试:
time find . -name '*.py' -type f -exec cat \{} \; | tqdm | wc -l
则有:
tqdm
注意,也可以指定tqdm的常规参数。如下:
就暂时说到这吧,感觉内容有点超纲了,如果对tqdm有兴趣的话可以访问官方文档深入了解。
3 参数
官方的类初始化代码如下:
class tqdm():
"""
Decorate an iterable object, returning an iterator which acts exactly
like the original iterable, but prints a dynamically updating
progressbar every time a value is requested.
"""
def __init__(self, iterable=None, desc=None, total=None, leave=True,
file=None, ncols=None, mininterval=0.1,
maxinterval=10.0, miniters=None, ascii=None, disable=False,
unit='it', unit_scale=False, dynamic_ncols=False,
smoothing=0.3, bar_format=None, initial=0, position=None,
postfix=None, unit_divisor=1000):
官方对各个参数介绍如下:
Parameters
----------
iterable : iterable, optional
Iterable to decorate with a progressbar.
Leave blank to manually manage the updates.
desc : str, optional
Prefix for the progressbar.
total : int, optional
The number of expected iterations. If unspecified,
len(iterable) is used if possible. If float("inf") or as a last
resort, only basic progress statistics are displayed
(no ETA, no progressbar).
If `gui` is True and this parameter needs subsequent updating,
specify an initial arbitrary large positive integer,
e.g. int(9e9).
leave : bool, optional
If [default: True], keeps all traces of the progressbar
upon termination of iteration.
file : `io.TextIOWrapper` or `io.StringIO`, optional
Specifies where to output the progress messages
(default: sys.stderr). Uses `file.write(str)` and `file.flush()`
methods. For encoding, see `write_bytes`.
ncols : int, optional
The width of the entire output message. If specified,
dynamically resizes the progressbar to stay within this bound.
If unspecified, attempts to use environment width. The
fallback is a meter width of 10 and no limit for the counter and
statistics. If 0, will not print any meter (only stats).
mininterval : float, optional
Minimum progress display update interval [default: 0.1] seconds.
maxinterval : float, optional
Maximum progress display update interval [default: 10] seconds.
Automatically adjusts `miniters` to correspond to `mininterval`
after long display update lag. Only works if `dynamic_miniters`
or monitor thread is enabled.
miniters : int, optional
Minimum progress display update interval, in iterations.
If 0 and `dynamic_miniters`, will automatically adjust to equal
`mininterval` (more CPU efficient, good for tight loops).
If > 0, will skip display of specified number of iterations.
Tweak this and `mininterval` to get very efficient loops.
If your progress is erratic with both fast and slow iterations
(network, skipping items, etc) you should set miniters=1.
ascii : bool or str, optional
If unspecified or False, use unicode (smooth blocks) to fill
the meter. The fallback is to use ASCII characters " 123456789#".
disable : bool, optional
Whether to disable the entire progressbar wrapper
[default: False]. If set to None, disable on non-TTY.
unit : str, optional
String that will be used to define the unit of each iteration
[default: it].
unit_scale : bool or int or float, optional
If 1 or True, the number of iterations will be reduced/scaled
automatically and a metric prefix following the
International System of Units standard will be added
(kilo, mega, etc.) [default: False]. If any other non-zero
number, will scale `total` and `n`.
dynamic_ncols : bool, optional
If set, constantly alters `ncols` to the environment (allowing
for window resizes) [default: False].
smoothing : float, optional
Exponential moving average smoothing factor for speed estimates
(ignored in GUI mode). Ranges from 0 (average speed) to 1
(current/instantaneous speed) [default: 0.3].
bar_format : str, optional
Specify a custom bar string formatting. May impact performance.
[default: '{l_bar}{bar}{r_bar}'], where
l_bar='{desc}: {percentage:3.0f}%|' and
r_bar='| {n_fmt}/{total_fmt} [{elapsed}<{remaining}, '
'{rate_fmt}{postfix}]'
Possible vars: l_bar, bar, r_bar, n, n_fmt, total, total_fmt,
percentage, rate, rate_fmt, rate_noinv, rate_noinv_fmt,
rate_inv, rate_inv_fmt, elapsed, elapsed_s, remaining,
remaining_s, desc, postfix, unit.
Note that a trailing ": " is automatically removed after {desc}
if the latter is empty.
initial : int, optional
The initial counter value. Useful when restarting a progress
bar [default: 0].
position : int, optional
Specify the line offset to print this bar (starting from 0)
Automatic if unspecified.
Useful to manage multiple bars at once (eg, from threads).
postfix : dict or *, optional
Specify additional stats to display at the end of the bar.
Calls `set_postfix(**postfix)` if possible (dict).
unit_divisor : float, optional
[default: 1000], ignored unless `unit_scale` is True.
write_bytes : bool, optional
If (default: None) and `file` is unspecified,
bytes will be written in Python 2. If `True` will also write
bytes. In all other cases will default to unicode.
gui : bool, optional
WARNING: internal parameter - do not use.
Use tqdm_gui(...) instead. If set, will attempt to use
matplotlib animations for a graphical output [default: False].
更多功能则可根据以上参数发挥你的想象力了。
参考资料
[1] tqdm官网: https://pypi.org/project/tqdm/
[2] time: https://www.runoob.com/linux/linux-comm-time.html
[3] find: https://www.runoob.com/linux/linux-comm-find.html
[4] wc: https://www.runoob.com/linux/linux-comm-wc.html
相关推荐
- ppt在线制作一键生成(免费生成ppt的网站)
-
一键生成自己需要的PPT通常涉及使用特定的软件或在线平台,这些工具利用模板、人工智能(AI)技术或预设的设计元素来自动化PPT的创建过程。以下是一些实现这一目标的方法:1.使用PowerPoint内...
-
- win7虚拟内存在哪设置(win7虚拟内存怎么设置多少合适)
-
设置方法如下:1、鼠标右键单击此电脑,选择属性,进入页面,单击左侧的高级系统设置,弹出窗口,在性能选项下方点击设置2、切换到高级选项栏,单击更改,勾选自动管理所有驱动器的分页文件大小,其虚拟内存将会被自动分配3、也可以手动设置虚拟内存,将自...
-
2025-11-29 13:51 off999
- 怎么下载ie8浏览器(怎样下载ie8浏览器)
-
进入应用市场,搜索要下载的这款浏览器。如果要付费,那就先付费在下载。不用直接下载,浏览器在手机上能下载要按照操作一步一步来下载需要占用内存空间请根据自己手机的情况进行下载浏览器在手机上能...
- 0x0000007b蓝屏(0x0000007b蓝屏修复win7)
-
首先我们将电脑重启,在开机时不停按启动热键进入到bios设置页面,进入页面后找到“IntegratedPeripherals”选项并回车;进入该页面后,我们选择“SATAConfiguration”按...
- esd系统安装工具(esd 安装)
-
1、首先在电脑中,从U盘启动,进入到pe系统的界面。2、这里推荐支持esd系统安装的两款软件,其中之一就是【CGI备份还原】,在桌面上打开该软件。3、然后在CGI备份还原软件中,选择还原分区,下边的盘...
- 下载win10光盘映像iso文件官方
-
用软件可以使用虚拟光驱安装ISO文件,具体操作请参照以下步骤。1、搜索“软件”,在搜索结果中找到链接,然后点击进入。2、下载完安装至电脑系统中,然后打开软件。点击软件左上角的文件菜单,在出现的下拉菜单...
- 电脑维修店推荐(电脑维修中心哪里好)
-
我以前去中关村修我的IBM笔记本,去了售后,售后说我主板的一个什么主芯片坏了,要我换板,价格很贵哦。由于我的本本有些年头了,不想花费太多的钱,所以又去了鼎好找了一家,花了我三个小时没修好,我又来到海龙...
- w10专业版和家庭版区别(w10专业版和家庭版有什么不同)
-
1Win10家庭版和专业版是微软公司推出的两种不同版本的操作系统,主要针对个人和小型企业用户。2区别主要在于专业版拥有更多高级管理、安全措施以及其他高级功能,比如远程桌面、虚拟机、组策略等等,所以...
- win7系统激活状态不可用(win7windows激活状态不可用)
-
未激活的系统很多应用程序都没办法使用的,所以用激活工具激活系统。接下来小编分享win7用激活工具激活不了系统原因和解决方法。解决方法:1、已经激活了,但是有的网友是出现了黑色壁才进行的激活。激活后桌...
- win7怎么设置不休眠(win7系统设置不休眠)
-
您可以按照以下步骤取消Windows7系统的休眠功能:1.点击“开始”菜单,选择“控制面板”。2.在控制面板中,选择“硬件和声音”。3.在“硬件和声音”中,选择“电源选项”。4.在“电源选项...
- win7重装系统后键盘鼠标没反应
-
方法一:使用安全模式来解决1.首先我们尝试重启电脑,按关机键几款重启,如果重启电脑没有效果的话,将电脑鼠标的接头重新换一个USB接头即可。2.接着再开机按F8键(这时键盘肯定能用),再到高级启动选项下...
- 4g网速最快的apn接入点(4g哪个接入点快)
-
中国联通网速最快最稳的APN是3gnet。联通4G卡APN接入点应该选择“3gnet”,具体设置步骤如下:1、以MIUI系统为例,点击桌面上的“设置”应用图标;2、在打开的设置应用界面中,选择“双卡和...
- linux软件大全(linux相关软件)
-
Airtime-Airtime是一款用于调度和远程站点管理的开放广播软件Ardour-在Linux上录音,编辑,和混音Audacious-开源音频播放器,按你想要的方式播放你的音乐,...
- 什么是网络交换机(什么是网络交换机的作用)
-
交换机(又名交换式集线器)作用与集线器大体相同,可以简单的理解为将一些机器连接起来组成一个局域网,而每台机器还能独享带宽。原理:MAC地址通常由网卡(NIC)决定,并且每个网卡、交换机和路由器的每个端...
欢迎 你 发表评论:
- 一周热门
-
-
抖音上好看的小姐姐,Python给你都下载了
-
全网最简单易懂!495页Python漫画教程,高清PDF版免费下载
-
Python 3.14 的 UUIDv6/v7/v8 上新,别再用 uuid4 () 啦!
-
飞牛NAS部署TVGate Docker项目,实现内网一键转发、代理、jx
-
python入门到脱坑 输入与输出—str()函数
-
宝塔面板如何添加免费waf防火墙?(宝塔面板开启https)
-
Python三目运算基础与进阶_python三目运算符判断三个变量
-
(新版)Python 分布式爬虫与 JS 逆向进阶实战吾爱分享
-
慕ke 前端工程师2024「完整」
-
失业程序员复习python笔记——条件与循环
-
- 最近发表
- 标签列表
-
- python计时 (73)
- python安装路径 (56)
- python类型转换 (93)
- python进度条 (67)
- python吧 (67)
- python的for循环 (65)
- python格式化字符串 (61)
- python静态方法 (57)
- python列表切片 (59)
- python面向对象编程 (60)
- python 代码加密 (65)
- python串口编程 (77)
- python封装 (57)
- python写入txt (66)
- python读取文件夹下所有文件 (59)
- python操作mysql数据库 (66)
- python获取列表的长度 (64)
- python接口 (63)
- python调用函数 (57)
- python多态 (60)
- python匿名函数 (59)
- python打印九九乘法表 (65)
- python赋值 (62)
- python异常 (69)
- python元祖 (57)
