python clear console command code example

Example 1: python clear console

import sys, os

os.system('cls')

Example 2: python interpreter clear screen

import os

# Windows
os.system('cls')

# Linux
os.system('clear')

Example 3: 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')

Example 4: python clear console

import os

def clearConsole():
    command = 'clear'
    if os.name in ('nt', 'dos'):  # If Machine is running on Windows, use cls
        command = 'cls'
    os.system(command)

clearConsole()