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
Post a Comment