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

Math

from math import inf, sqrt

Heapq

from heapq import heappop, heappush