Python: Module: Unterschied zwischen den Versionen
Flinh1 (Diskussion | Beiträge) (→Allgemeines) |
Flinh1 (Diskussion | Beiträge) (→Allgemeines) |
||
Zeile 7: | Zeile 7: | ||
== Allgemeines == | == Allgemeines == | ||
− | + | * https://py-tutorial-de.readthedocs.io/de/python-3.3/modules.html | |
---- | ---- |
Version vom 2. Juni 2019, 12:26 Uhr
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
| |