I know there's a similar topic about python console, but I do not know if they are the same. I tried system("clear") and it didn't work here.
How do I clear python's IDLE window?
If your system doesn't use readline , to remove all Python command history just delete the history file at ~/. python_history . You can see the full path of the history file with: python -c "import os; print(os.
The commands used to clear the terminal or Python shell are cls and clear.
The "cls" and "clear" are commands which will clear a terminal (ie a DOS prompt, or terminal window). From your screenshot, you are using the shell within IDLE, which won't be affected by such things. Unfortunately, I don't think there is a way to clear the screen in IDLE. The best you could do is to scroll the screen down lots of lines, eg:
print ("\n" * 100)
Though you could put this in a function:
def cls(): print ("\n" * 100)
And then call it when needed as cls()
os.system('clear')
works on linux. If you are running windows try os.system('CLS')
instead.
You need to import os first like this:
import os
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With