使用 graphics.h 或使用更高级的 WinBGI 库。下载它并将库文件和 graphics.h 文件放在项目中的适当位置。然后只需使用名为 gotoxy(int x, int y) 的函数,其中 x 和 y 位于字符位置(不是像素) 考虑您的控制台窗口位于笛卡尔二维轴系统的第四象限。但是 x 和 y 通常从 1 到 n 开始(取决于控制台窗口的大小)。每次发生这样的进度时,您只需要清除屏幕
system("cls");
因为 cls 是 Windows 的命令。否则对于 linux/Mac 使用
system("clear");
现在这个函数在 stdlib.h 头文件中。之后,您可以轻松更新进度条并在其中的任何位置写入。但是您使用的进度条是不连续的。有更有效的方法是使用
# Print iterations progress
def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1, length = 100, fill = '█'):
"""
Call in a loop to create terminal progress bar
@params:
iteration - Required : current iteration (Int)
total - Required : total iterations (Int)
prefix - Optional : prefix string (Str)
suffix - Optional : suffix string (Str)
decimals - Optional : positive number of decimals in percent complete (Int)
length - Optional : character length of bar (Int)
fill - Optional : bar fill character (Str)
"""
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end = '\r')
# Print New Line on Complete
if iteration == total:
print()
#
# Sample Usage
#
from time import sleep
# A List of Items
items = list(range(0, 57))
l = len(items)
# Initial call to print 0% progress
printProgressBar(0, l, prefix = 'Progress:', suffix = 'Complete', length = 50)
for i, item in enumerate(items):
# Do stuff...
sleep(0.1)
# Update Progress Bar
printProgressBar(i + 1, l, prefix = 'Progress:', suffix = 'Complete', length = 50)
# Sample Output
Progress: |█████████████████████████████████████████████-----| 90.0% Complete