clear screen in python shell code example
Example 1: clear screen python
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Example 2: python clear console
print('\033[H\033[J', end='')
Example 3: clear window python console
import os
clear = lambda: os.system('cls')
Example 4: python interpreter clear screen
import os
# Windows
os.system('cls')
# Linux
os.system('clear')