Answers for "python clear current console line"

14

python clear console

import sys, os

os.system('cls')
Posted by: Guest on February-29-2020
2

python cls statement using os module

import os
os.system('cls')  # on windows
Posted by: Guest on November-09-2020
2

python clear console

import sys

sys.stdout.flush()
Posted by: Guest on June-09-2021
5

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')
Posted by: Guest on May-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language