可能重复:
clear terminal in python
How to clear python interpreter console?
我正在尝试用Python编写程序,但我不知道如何清除屏幕。 我同时使用Windows和Linux,并使用命令来清除屏幕,但我不知道如何在Python中使用它。
如何使用Python清除屏幕?
答案 0 :(得分:252)
如果你的意思是你有解释器提示符>>>
的屏幕你可以在Bash shell上做 CTRL + L 可以提供帮助。 Windows没有等价物。你可以做到
import os
os.system('cls') # on windows
或
os.system('clear') # on linux / os x