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
here something handy that is a little more cross-platform
import os def cls(): os.system('cls' if os.name=='nt' else 'clear') # now, to clear the screen cls()