python clear screen in terminal code example

Example 1: clear screen python

Import os
 
os.system("clear") # Linux - OSX
os.system("cls") # Windows

Example 2: how to clear console python

import os
os.system('cls' if os.name == 'nt' else 'clear')

Example 3: python interpreter clear screen

import os

# Windows
os.system('cls')

# Linux
os.system('clear')

Example 4: clear console in python

As you mentioned, you can do a system call:

For Windows
>>> import os
>>> clear = lambda: os.system('cls')
>>> clear()

For Linux the lambda becomes
>>> clear = lambda: os.system('clear')