Python Built-in Modules

Aus MattWiki

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')