在所有这些编程方面我都很糟糕,我需要帮助。
我希望我的代码打印出类似hello world的信息,然后让我们说一秒钟后 删除该文本并将其替换为您好吗? 我已经尝试过诸如“清除”和“ / b”之类的各种操作,但是如果您能帮助的话,那什么也没用。
import time
print('hello world')
time.sleep(3)
#The text deleting code here...
print('how are you?')
答案 0 :(得分:1)
使用print()
的end
参数。默认情况下,它被分配了\n
。而是使用回车符,该回车符用于将回车移回当前行的左侧(开始)。
import time
print('hello world', end='\r')
time.sleep(3)
#The text deleting code here...
print('how are you?')