Python: Module
Inhaltsverzeichnis
Allgemeines
Import
import modulname
import includes.modulname as modulname
from modulname import funktionsname
from modulname import *
os
Seite aufräumen
Im Terminal von Linux oder Mac:
os.system("clear")
In DOS-Box (cmd)):
os.system("cls")
math
sqrt:
>>> import math >>> math.sqrt(100) 10.0
sin, cos, tan
| |