Comment effacer l'écran du terminal à l'aide de Python OS

import os

print("Random text")

os.system("cls")

print("Screen cleared")
Analoger