The following are the two top commands to clear the screen in Python. Also shown small video presentation how to use commands.
How to clear screen in Python
Even though, your python is installed on Linux, the “CLEAR” screen will not work in Python.
Top commands
The below are the commands to clear console in Python.
Command-1
You can always print enough newlines to clear your view of the window:
print "\n" * 80
Command-2
or use os.system to issue a command the shell/terminal/cmd will understand:
import os os.system("cls")
or
import os os.system("clear")
Advertisements