How to Clear terminal screen in Python Program

Опубликовано: 13 Март 2026
на канале: Kunal Attri
104
3

You can clear terminal screen during python program execution inside the program by defining a clear function and calling it as:

from os import system, name
def clear():
if name == "posix": # for linux, mac, bsds, unix, etc
system('clear')
else: # for windows
system('cls')


This Program Code:-
Github: https://github.com/Kunal-Attri/Python...
Drive: https://drive.google.com/file/d/16zgJ...

All Python Codes:-
Github: https://github.com/Kunal-Attri/Python...
Drive: https://drive.google.com/drive/folder...

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Subscribe to us for more videos!!!

Music: Bensound - Creative Minds

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Python:    • Python  

Pokemon FireRed:    • Pokemon FireRed  

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you own any rights to the content we use in our videos and want us to provide credits or remove the content , kindly contact us at [email protected] . We will solve it out with a hypothetic cup of tea(●'◡'●) .

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Instagram :-   / kunal.attri_  
Github:- https://github.com/kunal-attri

Like And Subscribe our Channel.......