vote up 6 vote down star
4

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.

flag

7 Answers

vote up 15 vote down check

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|flag
This answer is closest to the 'spirit' of what I was asking for, thanks. – Soviut Feb 6 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 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 at 21:22
You could get fancy and use the subprocess module (Popen?), and redirect stdout to subprocess.PIPE if you wanted to totally suppress the output, I think. – Ryan Duffield Feb 10 at 6:43
1  
What's wrong with using def? Why use a lambda when a def is clearer? – S.Lott Sep 16 at 12:31
vote up -2 vote down

Thank u all for your help and suggestions....

link|flag
3  
this is not forum, please delete this non-answer – SilentGhost Sep 5 at 18:27
vote up 1 vote down

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 Wipe(object):
    def __repr__(self):
        os.system('cls')
        return ''

The usage will be similar to earlier.

link|flag
vote up 6 vote down

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|flag
2  
I love it when someone uses true or false as indexes on an array. – Manuel Ferreria Mar 26 at 2:48
popcnt: you are obsolete! Use the ternary operator. :-) – kaizer.se Sep 16 at 13:25
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
how do you do that on idle? Just close and reopen? – Andrea Ambu Feb 5 at 23:08
vote up 6 vote down

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|flag
Haha, that's pretty funny. Not exactly what I was looking for, but nice try. – Soviut Feb 5 at 21:23
+1 for "\n" * 100. really easy to type. – Nick Stinemates Feb 5 at 21:49

Your Answer

Get an OpenID
or

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