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
You have number of ways doing it on Windows:
Press CTRL + L
import os cls = lambda: os.system('cls') cls()
cls = lambda: print('\n'*100) cls()