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
As you mentioned, you can do a system call:
For Windows
>>> import os >>> clear = lambda: os.system('cls') >>> clear()
For Linux the lambda becomes
>>> clear = lambda: os.system('clear')