what is the clear screen command in python code example
Example: clear screen python
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows