How to clear python interpreter console? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:21:50Z http://stackoverflow.com/feeds/question/517970 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console 6 How to clear python interpreter console? Soviut 2009-02-05T21:19:20Z 2009-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#517992 6 Answer by Triptych for How to clear python interpreter console? Triptych 2009-02-05T21:22:43Z 2009-02-05T21:29:52Z <p>Well, here's a quick hack:</p> <pre><code>&gt;&gt;&gt; clear = "\n" * 100 &gt;&gt;&gt; print clear &gt;&gt;&gt; ...do some other stuff... &gt;&gt;&gt; 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>&gt;&gt;&gt; from wiper import wipe &gt;&gt;&gt; wipe &gt;&gt;&gt; wipe &gt;&gt;&gt; wipe </code></pre> http://stackoverflow.com/questions/517970/how-to-clear-python-interpreter-console/518007#518007 15 Answer by Ryan Duffield for How to clear python interpreter console? Ryan Duffield 2009-02-05T21:25:08Z 2009-02-05T21:25:08Z <p>As you mentioned, you can do a system call:</p> <pre><code>&gt;&gt;&gt; clear = lambda: os.system('cls') &gt;&gt;&gt; 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#518401 1 Answer by S.Lott for How to clear python interpreter console? S.Lott 2009-02-05T23:03:55Z 2009-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#518540 0 Answer by Andrea Ambu for How to clear python interpreter console? Andrea Ambu 2009-02-05T23:51:51Z 2009-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#684344 6 Answer by popcnt for How to clear python interpreter console? popcnt 2009-03-26T02:42:42Z 2009-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#759084 1 Answer by Amol for How to clear python interpreter console? Amol 2009-04-17T04:58:19Z 2009-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 -2 Answer by JD for How to clear python interpreter console? JD 2009-09-05T17:58:53Z 2009-09-05T17:58:53Z <p>Thank u all for your help and suggestions....</p>