| | |
Clear the terminal window.
Please support our Python advertiser: Programming Forums - DaniWeb Sister Site
Printing a convenient ansi escape sequence clears the terminal (if you're running python from a terminal). Similar techniques could be used to print in colors.
Last edited by Gribouillis; Oct 26th, 2009 at 1:32 pm.
def clear(): print("\x1B[2J") clear()
0
•
•
•
•
Correction: you were right, I couldn't make it work on windows. The ANSI.SYS driver works only with very old versions of windows. You would need a terminal emulator similar to the linux console. There is a module console for windows, with slightly different control sequences. See if it works with your versions of windows/python.
So let's say it's linux only...
So let's say it's linux only...
Last edited by Gribouillis; Oct 27th, 2009 at 12:02 pm.
Similar Threads
- Mastermind Game (Python)
- Terminal Window in a GUI (Java)
- Clear the console screen (Java)
- Multi-line terminal commands (Python)
- HELP!!! Tic-tac-toe game! (C++)
- Window Medias player a b!tch to get rid of??? (OS X)
- ibook starts up in Darwin/BSD terminal mode (OS X)
| Thread Tools | Search this Thread |
Tag cloud for ansi, clear, terminal




