Python Built-in Modules: Unterschied zwischen den Versionen

Aus MattWiki
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
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
For more Python Basics see [[Python Basics]]
=== os - Operating System ===
=== os - Operating System ===



Version vom 8. Februar 2025, 09:23 Uhr

For more Python Basics see Python Basics

os - Operating System

How to Clear the Console from a Python Script

 import os
 os.system('cls' if os.name == 'nt' else 'clear')