Clear Consoe Python Code Example


Example 1: python clear console

import sys, os  os.system('cls')

Example 2: clear console in python

As you mentioned, you can do a system call:  For Windows >>> import os >>> clear = lambda: os.system('cls') >>> clear()  For Linux the lambda becomes >>> clear = lambda: os.system('clear')

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?