Python Built-in Modules: Unterschied zwischen den Versionen
Aus MattWiki
Matt (Diskussion | Beiträge) Die Seite wurde neu angelegt: „=== os - Operating System === ==== How to Clear the Console from a Python Script ==== <syntaxhighlight lang="python3"> import os os.system('cls' if os.name == 'nt' else 'clear') </syntaxhighlight> Kategorie:Python“ |
(kein Unterschied)
|
Version vom 8. Februar 2025, 10:18 Uhr
os - Operating System
How to Clear the Console from a Python Script
import os
os.system('cls' if os.name == 'nt' else 'clear')