Python Notes-Modul
A module is a piece of code, a file that ends with .py
Introduction: import math, placed at the top of the script
Call function: module name. Function name
Import part of the module
From modname import name1 [, name2 [,... NameN]]
Import all
From modname import*