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