如何在 Python 3.4.2 shell 上清除屏幕?

如何在 Python 3.4.2 shell 上清除屏幕?

我正在尝试清除 python 3.4.2 shell 上的屏幕,我使用了清除屏幕、clear()、cls、clrscr 等。但没有人工作,请告诉我清除屏幕的命令。

答案1

CTRL+L应该做你想做的事

答案2

import os
cls = lambda: os.system('cls')
cls()

答案3

有一个新的并且非常简单的 python 模块..它可以在 shell 中运行,并且适用于 Windows 和 Linux:

皮皮

sudo pip3 install clear-shell

from clear_shell import clear

clear()

在我看来,打字clear()更容易、更快捷。

相关内容