如何在 Windows 命令行中覆盖/打印当前行?
- 2025-03-25 08:47:00
- admin 原创
- 20
问题描述:
在 Unix 上,我可以使用`(回车)或
`(退格)在 shell 中覆盖当前行(打印已经可见的文本)。
我可以通过 Python 脚本在 Windows 命令行中实现相同的效果吗?
我尝试了 curses 模块但它似乎在 Windows 上不可用。
解决方案 1:
是的:
import sys
import time
def restart_line():
sys.stdout.write('
')
sys.stdout.flush()
sys.stdout.write('some data')
sys.stdout.flush()
time.sleep(2) # wait 2 seconds...
restart_line()
sys.stdout.write('other different data')
sys.stdout.flush()
解决方案 2:
我知道这已经很老了,但是我想告诉我的版本(它可以在 cmd 中在我的 PC 上运行,但在空闲状态下不能运行)覆盖 Python 3 中的一行:
>>> from time import sleep
>>> for i in range(400):
>>> print("
" + str(i), end="")
>>> sleep(0.5)
编辑:
它适用于 Windows 和 Ubuntu
解决方案 3:
import sys
import time
for i in range(10):
print '
', # print is Ok, and comma is needed.
time.sleep(0.3)
print i,
sys.stdout.flush() # flush is needed.
如果在 IPython-notebook 上,就像这样:
import time
from IPython.display import clear_output
for i in range(10):
time.sleep(0.25)
print(i)
clear_output(wait=True)
解决方案 4:
我刚刚遇到了这个问题。`即使在 Windows 命令提示符中,您仍然可以使用,但是它只会带您返回到上一个换行符 (
`)。
如果你做这样的事情:
cnt = 0
print str(cnt)
while True:
cnt += 1
print "
" + str(cnt)
您将获得:
0
1
2
3
4
5
...
这是因为`
`只返回到最后一行。由于您已经在最后一个 print 语句中写入了换行符,因此您的光标将从新空行的开头移动到同一新空行的开头。
为了说明起见,打印第一个 0 后,光标将位于这里:
0
| # <-- Cursor
当你 时`
`,你转到了队列的开头。但你已在队列的开头。
解决方法是避免打印`字符,这样您的光标就在同一行上并
正确覆盖文本。您可以使用 来做到这一点
print 'text',`。逗号可防止打印换行符。
cnt = 0
print str(cnt),
while True:
cnt += 1
print "
" + str(cnt),
现在它将正确地重写行。
请注意,这是 Python 2.7,因此有这些print
语句。
解决方案 5:
简便方法:
import sys
from time import sleep
import os
#print("[y coordinate;[x coordinateH Hello")
os.system('cls')
sleep(0.2)
print("[1;1H[]")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H []")
sleep(0.2)
print("[1;1H[]")
sleep(0.2)
解决方案 6:
如果您只是想更新上一行,方法很简单:
import time
for i in range(20):
print str(i) + '
',
time.sleep(1)
解决方案 7:
最简单的方法是使用两个 \r - 一个在开头,一个在结尾
for i in range(10000):
print('
'+str(round(i*100/10000))+'% Complete
'),
它会很快
解决方案 8:
在 PyCharm 2020.3 和 Python 版本 3.9 上进行了测试,为了覆盖书面打印输出,我使用以下命令:
from time import sleep
for x in range(10):
print(f'
{x}', end='')
sleep(0.6)
这是我在程序中主要使用的代码。使用`end='
'`将覆盖整个文本,忽略睡眠。
在实际场景中,我的设置如下:
def progress_callback(progress):
print(f'
Downloading File: {progress.dlable.file_name} Progress: ' + '{0:.2f}%'.format(progress.percent), end='')
# `return True` if the download should be canceled
return False
print('
Download complete!)
覆盖功能后的打印必须在新行中,否则之前的同一行将被覆盖。
解决方案 9:
在 Windows(python 3)上,它似乎可以工作(不直接使用 stdout):
import sys
for i in reversed(range(0,20)):
time.sleep(0.1)
if(i == 19):
print(str(i), end='', file=sys.stdout)
else:
print("
{0:{width}".format(str(i), width = w, fill = ' ', align = 'right'), end='', file=sys.stdout)
sys.stdout.flush()
w = len(str(i))
每次调用打印函数时都会更新同一行。
此算法可以改进,但发布出来是为了展示您可以做什么。您可以根据需要修改该方法。
解决方案 10:
感谢大家在这里提供的所有有用答案。我需要这个 :)
我发现 nosklo 的答案特别有用,但我希望通过将所需输出作为参数传递,将某些东西完全包含在函数中。另外,我实际上不需要计时器,因为我希望打印在特定事件之后进行。
这就是对我有用的窍门,我希望其他人也觉得它有用:
import sys
def replace_cmd_line(output):
"""Replace the last command line output with the given output."""
sys.stdout.write(output)
sys.stdout.flush()
sys.stdout.write('
')
sys.stdout.flush()
解决方案 11:
是的,这个问题是 11 年前问的,但很酷。我喜欢即兴发挥。补充一下 nosklo 的回答:
import sys
import time
def restart_line():
sys.stdout.write("
")
sys.stdout.flush()
string_one = "some data that is very long..."
sys.stdout.write(string_one)
sys.stdout.flush()
time.sleep(2)
restart_line()
string_two = "shorter data"
if len(string_two) < len(string_one):
string_two = string_two+(" "*int((len(string_one)-len(string_two))))
# This will overwrite the characters that would be left on the console
sys.stdout.write(string_two)
sys.stdout.flush()