How to clear python interpreter console? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T22:21:50Zhttp://stackoverflow.com/feeds/question/517970http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console6How to clear python interpreter console?Soviut2009-02-05T21:19:20Z2009-09-05T17:58:53Z
<p>Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc.</p>
<p>Like any console, after a while the visible backlog of past commands and prints gets to be cluttered, and sometimes confusing when re-running the same command several times. I'm wondering if, and how, to clear the Python interpreter console.</p>
<p>I've heard about doing a system call and either calling <code>cls</code> on Windows or <code>clear</code> on Linux, but I was hoping there was something I could command the interpreter itself to do.</p>
<p><strong>Note:</strong> I'm running on Windows, so Ctrl+L doesn't work.</p>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/517992#5179926Answer by Triptych for How to clear python interpreter console?Triptych2009-02-05T21:22:43Z2009-02-05T21:29:52Z<p>Well, here's a quick hack:</p>
<pre><code>>>> clear = "\n" * 100
>>> print clear
>>> ...do some other stuff...
>>> print clear
</code></pre>
<p>Or to save some typing, put this file in your python search path:</p>
<pre><code># wiper.py
class Wipe(object):
def __repr__(self):
return '\n'*1000
wipe = Wipe()
</code></pre>
<p>Then you can do this from the interpreter all you like :)</p>
<pre><code>>>> from wiper import wipe
>>> wipe
>>> wipe
>>> wipe
</code></pre>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/518007#51800715Answer by Ryan Duffield for How to clear python interpreter console?Ryan Duffield2009-02-05T21:25:08Z2009-02-05T21:25:08Z<p>As you mentioned, you can do a system call:</p>
<pre><code>>>> clear = lambda: os.system('cls')
>>> clear()
</code></pre>
<p>I am not sure of any other way in Windows.</p>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/518401#5184011Answer by S.Lott for How to clear python interpreter console?S.Lott2009-02-05T23:03:55Z2009-02-08T00:22:51Z<p>Use idle. It has many handy features. F6, for example, resets the console. Closing and opening the console are good ways to clear it.</p>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/518540#5185400Answer by Andrea Ambu for How to clear python interpreter console?Andrea Ambu2009-02-05T23:51:51Z2009-02-05T23:51:51Z<p>EDIT: I've just read "windows", this is for linux users, sorry.</p>
<p><hr /></p>
<p>In bash:</p>
<pre><code>#!/bin/bash
while [ "0" == "0" ]; do
clear
$@
while [ "$input" == "" ]; do
read -p "Do you want to quit? (y/n): " -n 1 -e input
if [ "$input" == "y" ]; then
exit 1
elif [ "$input" == "n" ]; then
echo "Ok, keep working ;)"
fi
done
input=""
done
</code></pre>
<p>Save it as "whatyouwant.sh", chmod +x it then run:</p>
<pre><code>./whatyouwant.sh python
</code></pre>
<p>or something other than python (idle, whatever).
This will ask you if you actually want to exit, if not it rerun python (or the command you gave as parameter).</p>
<p>This will clear all, the screen and all the variables/object/anything you created/imported in python. </p>
<p>In python just type exit() when you want to exit.</p>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/684344#6843446Answer by popcnt for How to clear python interpreter console?popcnt2009-03-26T02:42:42Z2009-03-26T02:42:42Z<p>here something handy that is a little more cross-platform</p>
<pre><code>import os
def cls():
os.system(['clear','cls'][os.name == 'nt'])
# now, to clear the screen
cls()
</code></pre>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/759084#7590841Answer by Amol for How to clear python interpreter console?Amol2009-04-17T04:58:19Z2009-04-17T04:58:19Z<p>Wiper is cool, good thing about it is I don't have to type '()' around it.
Here is slight variation to it</p>
<pre><code># wiper.py
import os
class Wipe(object):
def __repr__(self):
os.system('cls')
return ''
</code></pre>
<p>The usage will be similar to earlier.</p>
http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/1383903#1383903-2Answer by JD for How to clear python interpreter console?JD2009-09-05T17:58:53Z2009-09-05T17:58:53Z<p>Thank u all for your help and suggestions....</p>