Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clearing Console in Python

Tags:

python

console

I've been having trouble clearing the console on python. I've tried to do Console.Clear() and clear() but for some reason they haven't been working.


1 Answers

I think this will help you: Click here

There are multiple ways depends on your operating system

The fastest option would be:

print("\033c", end='')

Good luck :)

like image 193
Mark Avatar answered Dec 20 '25 15:12

Mark