Python 是一種高級編程語言,向程序員提供了高度交互性和可讀性的語法,廣泛應用于數據分析、網絡編程和自動化任務。其中進度條是 Python 腳本中經常使用的一個功能,它可以顯示程序運行的進度和剩余時間,提高用戶體驗。
import time # Print iterations progress, credits to Greenstick def print_progress_bar(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))) filled_length = int(length * iteration // total) bar = fill * filled_length + '-' * (length - filled_length) print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end='\r') # Print New Line on Complete if iteration == total: print() # Test your script for i in range(100): print_progress_bar(i, 100, prefix='Progress:', suffix='Complete', length=50) time.sleep(0.05)
上述代碼演示了如何創建一個簡單的進度條,實現原理是通過迭代 percentage 和使用特定字符填充 bar,從而顯示進度的比例。以下是參數的解釋:
- iteration:表示當前的進度
- total:表示總的進度
- prefix:表示進度條前綴
- suffix:表示進度條后綴
- decimals:表示百分比顯示的小數點位數
- length:表示進度條的長度
- fill:表示進度條的填充字符
在實際的應用場景中,我們可以將進度條集成到自己的腳本中,根據需要對參數進行調整。
上一篇c 中如何調用json庫
下一篇python 自你回復