许多基于终端的应用程序需要一种可视化进度的方法。在本文中,我们将探索如何使用块字符在终端中创建进度条,同时保留先前的输出。
以下代码提供了一个可自定义的进度条,可以与任何 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中文网其他相关文章!