如何在python中删除打印的文本并将其替换为其他文本

时间:2018-06-23 15:44:19

标签: python python-3.x

在所有这些编程方面我都很糟糕,我需要帮助。

我希望我的代码打印出类似hello world的信息,然后让我们说一秒钟后 删除该文本并将其替换为您好吗? 我已经尝试过诸如“清除”和“ / b”之类的各种操作,但是如果您能帮助的话,那什么也没用。

import time
print('hello world')
time.sleep(3)
#The text deleting code here...
print('how are you?')

1 个答案:

答案 0 :(得分:1)

使用print()end参数。默认情况下,它被分配了\n。而是使用回车符,该回车符用于将回车移回当前行的左侧(开始)。

import time
print('hello world', end='\r')
time.sleep(3)
#The text deleting code here...
print('how are you?')