📌  相关文章
📜  在没有下一行的情况下打印进度 python 代码示例

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

代码示例2
def f():
     print('xy', end='')
     print('\rzz')
 
f()

>> zz // \r make cursor reset to the start of the line and over-write any text after that