Как очистить экран терминала с использованием ОС Python

import os

print("Random text")

os.system("cls")

print("Screen cleared")
Analoger