Sujet : Re: Fwd: IDLE: clearing the screen
De : cs (at) *nospam* cskk.id.au (Cameron Simpson)
Groupes : comp.lang.pythonDate : 05. Jun 2024, 05:09:29
Autres entêtes
Message-ID : <mailman.89.1717556981.2909.python-list@python.org>
References : 1 2
User-Agent : Mutt/2.2.7 (2022-08-07)
On 04Jun2024 22:43, Rob Cliffe <
rob.cliffe@btinternet.com> wrote:
import os
def cls(): x=os.system("cls")
>
Now whenever you type
cls()
it will clear the screen and show the prompt at the top of the screen.
>
(The reason for the "x=" is: os.system returns a result, in this case 0. When you evaluate an expression in the IDE, the IDE prints the result. So without the "x=" you get an extra line at the top of the screen containing "0".)
Not if it's in a function, because the IDLE prints the result if it isn't None, and your function returns None. So:
def cls():
os.system("cls")
should be just fine.