标签: python
如果按下 Enter ,如何告诉我的程序删除以前的文本?
print('Information: \n ' ) input('Press Enter to continue.')
因此,如果用户阅读信息并按 Enter ,则上述文本仍然存在。
如何删除它?
答案 0 :(得分:0)
以下脚本可以清除您的屏幕
import subprocess as sp sp.call('cls',shell=True)