在Python中,要刪除輸出的內容,可以使用兩種方法:
print
函數的end
參數設置為空字符串。end
參數用于指定輸出結束時的字符,默認為換行符\n
。通過將end
參數設置為空字符串,可以使輸出的內容不換行,覆蓋之前的輸出內容。print("Hello, world!", end='')
# 輸出:Hello, world!
print("Hello", end=' ')
print("world!")
# 輸出:Hello world!
\r
進行覆蓋。\r
表示回車符,將光標移至行首。通過在輸出內容前添加\r
,可以使輸出的內容覆蓋之前的內容。import time
print("Loading", end='')
time.sleep(1)
print("\rLoading.", end='')
time.sleep(1)
print("\rLoading..", end='')
time.sleep(1)
print("\rLoading...")
# 在一秒鐘的間隔后輸出:Loading...
需要注意的是,以上方法只能在控制臺中刪除輸出的內容,在文件中無法實現刪除。