OK, pretty basic question, but I cannot find it on google because apparently everyone who asks it phrases it wrong: In batch files, QBasic, and a couple of other languages there is a "cls" command, which basically clears all printed items and inputs from the display before continuing with the program. So, to make things painfully clear, if ran the program without putting cls in between my prints, the command shell would say:
Hello World!
How are you?
But if I did put cls in between them, the Hello world would be replaced by how are you.
Anyway, is there an equivalent to the cls command in Python? And I don't want this:
os.system('cls')