os.system(clear) code example
Example 1: clear screen python
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Example 2: console clear python
import os
os.system('clear')
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
import os
os.system('clear')