0
How to perform clear screen in python?
3 Answers
+ 1
cls is the command that is being run in the console. It means clear screen I'm pretty sure.
0
There is a command in python to clear the screen. To run the command you need to use os. This should work:
import os
clear = lambda: os.system('cls')
clear()
0
what does 'cls' mean please?