clearconsole

Can be used to clear the screen.


License
MIT
Install
pip install clearconsole==0.0.5

Documentation

Clear can be used to clear the screen in the python console. To use: First:

pip install clearconsole

Next:

from clearconsole import clear
import time
print('Example')
time.sleep(2)
clear()

or:

from clearconsole import cls
import time
print('Example')
time.sleep(2)
cls()

It does not matter what system you're on.