Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc.

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.

I've heard about doing a system call and either calling cls on Windows or clear on Linux, but I was hoping there was something I could command the interpreter itself to do.

Note: I'm running on Windows, so Ctrl+L doesn't work.

link|improve this question

feedback

14 Answers

up vote 45 down vote accepted

As you mentioned, you can do a system call:

>>> clear = lambda: os.system('cls')
>>> clear()

I am not sure of any other way in Windows.

link|improve this answer
This answer is closest to the 'spirit' of what I was asking for, thanks. – Soviut Feb 6 '09 at 0:18
+1, nice answer. Is there a way to consume the return value so that it doesn't show? I get a '0' after running clear. – technomalogical Feb 6 '09 at 14:00
2  
Define it in a regular function instead of lambda should not show '0' as the return value will be None. – Akbar ibrahim Feb 6 '09 at 21:22
4  
What's wrong with using def? Why use a lambda when a def is clearer? – S.Lott Sep 16 '09 at 12:31
1  
Don't forget to import os – Old McStopher May 25 '11 at 16:49
show 1 more comment
feedback

here something handy that is a little more cross-platform

import os

def cls():
    os.system(['clear','cls'][os.name == 'nt'])

# now, to clear the screen
cls()
link|improve this answer
5  
I love it when someone uses true or false as indexes on an array. – Manuel Ferreria Mar 26 '09 at 2:48
8  
popcnt: you are obsolete! Use the ternary operator. :-) – kaizer.se Sep 16 '09 at 13:25
That is so wrong. It's like writing 'where' instead of 'were', or 'they're' instead of 'there. Just... Wrong. – brice Jan 28 at 16:24
feedback

Well, here's a quick hack:

>>> clear = "\n" * 100
>>> print clear
>>> ...do some other stuff...
>>> print clear

Or to save some typing, put this file in your python search path:

# wiper.py
class Wipe(object):
    def __repr__(self):
        return '\n'*1000

wipe = Wipe()

Then you can do this from the interpreter all you like :)

>>> from wiper import wipe
>>> wipe
>>> wipe
>>> wipe
link|improve this answer
Haha, that's pretty funny. Not exactly what I was looking for, but nice try. – Soviut Feb 5 '09 at 21:23
+1 for "\n" * 100. really easy to type. – Nick Stinemates Feb 5 '09 at 21:49
@Triptych: c = "\n" * 100 usefull, +1 for it. A small comment it clears and brings to the bottom of the shell, i prefer to start from the shell top. – pythonbeginer Sep 20 '11 at 21:02
feedback

Although this is an older question, I thought I'd contribute something summing up what I think were the best of the other answers and add a wrinkle of my own by suggesting that you put these command(s) into a file and set your PYTHONSTARTUP environment variable to point to it. Since I'm on Windows at the moment, it's slightly biased that way, but could easily be slanted some other direction.

Anyway, here's my take on the code to put (or add to your existing) Python startup script:

# ==== pythonstartup.py ====

# add something to clear the screen
class cls(object):
    def __repr__(self):
        import os
        os.system('cls' if os.name == 'nt' else 'clear')
        return ''

cls = cls()

# ==== end pythonstartup.py ====

BTW, you can also use @Triptych's __repr__ trick to change exit() into just exit:

class exit(object):
    exit = exit # original object
    def __repr__(self):
        self.exit() # call original
        return ''

exit = exit()

Lastly, here's something else that changes the primary interpreter prompt from >>> to cwd+>>>:

class Prompt:
    def __str__(self):
        import os
        return '%s >>> ' % os.getcwd()

import sys
sys.ps1 = Prompt()
del sys
del Prompt
link|improve this answer
feedback

Use idle. It has many handy features. F6, for example, resets the console. Closing and opening the console are good ways to clear it.

link|improve this answer
how do you do that on idle? Just close and reopen? – Andrea Ambu Feb 5 '09 at 23:08
1  
No, F6 does not reset the Idle console, however CTRL+F6 does. Unfortunately this does not clear the screen. D'oh! (Python Win32 Idle versions 2.6.2, 2.7.1, 3.2). – ridgerunner May 1 '11 at 14:58
feedback

Wiper is cool, good thing about it is I don't have to type '()' around it. Here is slight variation to it

# wiper.py
import os
class Cls(object):
    def __repr__(self):
        os.system('cls')
        return ''

The usage is quite simple:

>>> cls = Cls()
>>> cls # this will clear console.
link|improve this answer
1  
I'd name it class cls. – martineau Oct 12 '10 at 17:25
I'd name the instance of the class Cls to be cls. cls = Cls() – Amol Dec 27 '11 at 5:47
Except that pollutes the initial namespace with two things instead of one...twice as much. – martineau Dec 27 '11 at 19:23
feedback

I'm using MINGW/BASH on Windows XP, SP3.

(stick this in .pythonstartup)
# My ctrl-l already kind of worked, but this might help someone else
# leaves prompt at bottom of the window though...
import readline
readline.parse_and_bind('\C-l: clear-screen')

# This works in BASH because I have it in .inputrc as well, but for some
# reason it gets dropped when I go into Python
readline.parse_and_bind('\C-y: kill-whole-line')


I couldn't stand typing 'exit()' anymore and was delighted with martineau's/Triptych's tricks:

I slightly doctored it though (stuck it in .pythonstartup)

class exxxit():
    """Shortcut for exit() function, use 'x' now"""
    quit_now = exit # original object
    def __repr__(self):
        self.quit_now() # call original
x = exxxit()

Py2.7.1>help(x)
Help on instance of exxxit in module __main__:

class exxxit
 |  Shortcut for exit() function, use 'x' now
 |
 |  Methods defined here:
 |
 |  __repr__(self)
 |
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |
 |  quit_now = Use exit() or Ctrl-Z plus Return to exit
link|improve this answer
feedback

EDIT: I've just read "windows", this is for linux users, sorry.


In bash:

#!/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

Save it as "whatyouwant.sh", chmod +x it then run:

./whatyouwant.sh python

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).

This will clear all, the screen and all the variables/object/anything you created/imported in python.

In python just type exit() when you want to exit.

link|improve this answer
feedback

This should be cross platform, and also uses the preferred subprocess.call instead of os.system as per the os.system docs. Should work in Python >= 2.4.

import subprocess
import os

if os.name == 'nt':
    def clearscreen():
        subprocess.call("cls", shell=True)
        return
else:
    def clearscreen():
        subprocess.call("clear", shell=True)
        return
link|improve this answer
feedback

One small point - This will not work in IDLE is you are using windows.

link|improve this answer
feedback

How about this for a clear

- os.system('cls')

That is about as short as could be!

link|improve this answer
feedback

The OS command clear in Linux and cls in Windows outputs a "magic string" which you can just print. To get the string, execute the command with popen and save it in a variable for later use:

from os import popen
with popen('clear') as f:
    clear = f.read()

print clear

On my machine the string is '\x1b[H\x1b[2J'.

link|improve this answer
feedback

Here are two nice ways of doing that:

1.

import os

# Clear Windows command prompt.
if (os.name in ('ce', 'nt', 'dos')):
    os.system('cls')

# Clear the Linux terminal.
elif ('posix' in os.name):
    os.system('clear')

2.

import os

def clear():
    if os.name == 'posix':
        os.system('clear')

    elif os.name == ('ce', 'nt', 'dos'):
        os.system('cls')


clear()
link|improve this answer
feedback
>>> ' '*80*25

(p.S. this comment is required to comply to len(answer) >= 30 rule)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.