Cómo borrar la pantalla del terminal usando Python OS

import os

print("Random text")

os.system("cls")

print("Screen cleared")
Analoger