📜  python 如何在特定位置打印东西 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:45.296000             🧑  作者: Mango

代码示例1
import sys
def print_there(x, y, text):
     sys.stdout.write("\x1b7\x1b[%d;%df%s\x1b8" % (x, y, text))
     sys.stdout.flush()