1. 程式人生 > >Python控制檯輸出時重新整理當前行內容而不是輸出新行

Python控制檯輸出時重新整理當前行內容而不是輸出新行

需求目標

執行Python程式的時候在控制檯輸出內容的時候只顯示一行,然後自動重新整理內容,像這樣:

Downloading File FooFile.txt [47%]

而不是這樣:

Downloading File FooFile.txt [47%]
Downloading File FooFile.txt [48%]
Downloading File FooFile.txt [49%]

實現環境

Python 3.x

實現程式碼

import time
for i in range(10):
    time.sleep(0.2) 
    print ("\r Loading... ".format(i)+str(i), end="")

這裡主要用到了Python 3.x裡面print函式增加的功能,使用\r可以重新整理當前行輸出,2.x裡面沒有測試,理論上不可以這樣操作