Pythonスクリプトを作成しましたが、それを修正するのに助けが必要です。基本的に、Python スクリプトを使用して、データがデータベースに移動されたときに作成される特定のログ ファイルの進行状況、または Linux での特定のバックグラウンド ジョブの進行状況を表示できるようにしたいと考えています。
from time import sleep
import sys
for i in range(21):
sys.stdout.write('\r')
# the exact output you're looking for:
sys.stdout.write("[%-20s] %d%%" % ('='*i, 5*i))
sys.stdout.flush()
sleep(0.25)