Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff
dir()
help() stuff
This is the simplest thing you can do and it doesn't require any additional libraries. It will clear the screen and return >>> to the top left corner.
>>>
print("\033[H\033[J")