📜  同一行上的新打印替换 python 3 - Python 代码示例

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

代码示例1
for x in range(10):
    print('\r H M S 0 0 {}'.format(x), end='')
    time.sleep(1)