Jak wyczyścić ekran terminala za pomocą Python OS
import os
print("Random text")
os.system("cls")
print("Screen cleared")
Analoger
import os
print("Random text")
os.system("cls")
print("Screen cleared")