Przezroczysty ekran Python
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Clever Crab
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
os.system('cls' if os.name in ('nt', 'dos') else 'clear') #Works for both windows and linux