About 57 results
Open links in new tab
  1. Clear the terminal in Python - Stack Overflow

    Does any standard method exist to clear the terminal screen programmatically from a Python script, or do I have to use curses library ?

  2. How to clear the screen in Python - Stack Overflow

    Jan 27, 2011 · Possible Duplicates: Clear the terminal in Python How can I clear the interpreter console? I'm trying to write a program in Python, but I don't know how to clear the screen.

  3. python - How can I clear the interpreter console? - Stack Overflow

    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 …

  4. Is there a way to clear Python's IDLE window? - Stack Overflow

    I know there's a similar topic about the Python console, but I do not know if they are the same. I tried system("clear") and it didn't work here. How do I clear Python's IDLE window?

  5. python - Clear screen in shell - Stack Overflow

    Here's how to make your very own cls or clear command that will work without explicitly calling any function! We'll take advantage of the fact that the python console calls repr() to display objects on …

  6. Completely clearing the terminal window using Python

    How can I in Python (v 2.7.2) completely clear the terminal window? This doesn't work since it just adds a bunch of new lines and the user can still scroll up and see earlier commands import os os.

  7. python - Clearing the screen in IPython - Stack Overflow

    Jul 31, 2011 · Is there a command in IPython to clear the screen? EDIT: As @Saher mentions below, I can clean the screen using import os; os.system('CLS'), but is there a way to do this without having …

  8. macos - Python clear the screen - Stack Overflow

    I am still trying to make my quiz, but I want to enter a clear the screen code for my questions. So, after researching, I found a code that works, but it puts my questions way to the bottom of the ...

  9. How do I clear the screen in Python 3? - Stack Overflow

    Feb 27, 2019 · How do I clear the screen in Python 3? Asked 6 years, 10 months ago Modified 5 years ago Viewed 888 times

  10. Is there a python 3 command to clear the output console?

    Dec 27, 2019 · It basically uses a system based python interpreter, there is no direct way or command to clear Python interpreter console. So you need a system call to clear the Python interpreter console …