how to clear text in python terminal code example
Example 1: 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 2: clearing the terminal in python
import os
os.system("clear")
print("Hello!")
#Only Hello will be in the terminal