首页 > 后端开发 > Python教程 > 如何使用 Python 在终端中创建可自定义的文本进度条?

如何使用 Python 在终端中创建可自定义的文本进度条?

Barbara Streisand
发布: 2024-12-06 17:52:13
原创
364 人浏览过

How to Create a Customizable Text Progress Bar in Your Terminal Using Python?

终端中带有块字符的文本进度栏

简介

许多基于终端的应用程序需要一种可视化进度的方法。在本文中,我们将探索如何使用块字符在终端中创建进度条,同时保留先前的输出。

可自定义进度条

以下代码提供了一个可自定义的进度条,可以与任何 Python 3 应用程序一起使用:

def printProgressBar(iteration, total, prefix='', suffix='', decimals=1, length=100, fill='█', printEnd='\r'):
    percent = ("{0:.{0}f}".format(decimals)).format(100 * (iteration / float(total)))
    filledLength = int(length * iteration // total)
    bar = fill * filledLength + '-' * (length - filledLength)
    print(f'\r{prefix} |{bar}| {percent}% {suffix}', end=printEnd)

    # Print new line on completion
    if iteration == total:
        print()
登录后复制

单调用版本

为了方便起见,以下代码提供了上述进度条的单次调用版本:

def progressBar(iterable, prefix='', suffix='', decimals=1, length=100, fill='█', printEnd='\r'):
    total = len(iterable)
    
    # Progress bar printing function
    def printProgressBar(iteration):
        percent = ("{0:.{0}f}".format(decimals)).format(100 * (iteration / float(total)))
        filledLength = int(length * iteration // total)
        bar = fill * filledLength + '-' * (length - filledLength)
        print(f'\r{prefix} |{bar}| {percent}% {suffix}', end=printEnd)

    # Initial call
    printProgressBar(0)
    
    # Update progress bar
    for i, item in enumerate(iterable):
        yield item
        printProgressBar(i + 1)

    # Print new line on completion
    print()
登录后复制

用法

以下代码展示了如何使用进度条:

import time

# List of items
items = list(range(0, 57))

# Progress bar usage
for item in progressBar(items, prefix='Progress:', suffix='Complete', length=50):
    # Do stuff...
    time.sleep(0.1)
登录后复制

结论

这些代码片段提供了一个多功能且易于使用的进度条解决方案,可以增强任何基于终端的用户体验申请。

以上是如何使用 Python 在终端中创建可自定义的文本进度条?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板