使用 colorama 将光标定位在 Windows 10 终端 window
Positioning the cursor in Windows 10 terminal window using colorama
我发现的所有文档都表明这应该有效,但光标位置不是 return 到 0,0。
colorama.init()
def move (y, x):
print("3[%d;%dH" % (y, x))
for file in original_file:
for element in root.iter():
all_lines = all_lines+1
if element.text != None:
if element.tag in field_list:
if len(element.text) > field_list[element.tag]:
corrected_lines = corrected_lines+1
move(0, 0)
working_message(username, window_width)
print("{3}: {0} \n {1} to {2}\n---".format(element.tag, len(element.text), field_list[element.tag], corrected_lines))
print(corrected_lines)
print(all_lines)
element.text = element.text[field_list[element.tag]]
重要的一点是colorama被初始化,然后每个循环都应该使用move(0,0)函数将光标移动到0,0(作为“\033[0;0H”的字符串传递以打印).
屏幕左上角的坐标为 1,1 而不是 0,0。所以你的电话应该是
move(1,1)
您的 print()
调用应如下所示:
print("3[%d;%dH" % (y, x), end="")
否则,move(1,1)
将调用 print()
,后者将发出转义码以将光标发送到所需坐标,然后立即发出回车符 return/line 提要。这会将您的 move(1,1)
有效地变成 move(1,2)
。
我发现的所有文档都表明这应该有效,但光标位置不是 return 到 0,0。
colorama.init()
def move (y, x):
print("3[%d;%dH" % (y, x))
for file in original_file:
for element in root.iter():
all_lines = all_lines+1
if element.text != None:
if element.tag in field_list:
if len(element.text) > field_list[element.tag]:
corrected_lines = corrected_lines+1
move(0, 0)
working_message(username, window_width)
print("{3}: {0} \n {1} to {2}\n---".format(element.tag, len(element.text), field_list[element.tag], corrected_lines))
print(corrected_lines)
print(all_lines)
element.text = element.text[field_list[element.tag]]
重要的一点是colorama被初始化,然后每个循环都应该使用move(0,0)函数将光标移动到0,0(作为“\033[0;0H”的字符串传递以打印).
屏幕左上角的坐标为 1,1 而不是 0,0。所以你的电话应该是
move(1,1)
您的 print()
调用应如下所示:
print("3[%d;%dH" % (y, x), end="")
否则,move(1,1)
将调用 print()
,后者将发出转义码以将光标发送到所需坐标,然后立即发出回车符 return/line 提要。这会将您的 move(1,1)
有效地变成 move(1,2)
。