Python: Importando Funções Matemáticas
Importando a lib
import math
Importando com um alias
import math as m
Importando apenas algumas funções
from math import sqrt,pow
Verificando o help
import math help(math)
import math
import math as m
from math import sqrt,pow
import math help(math)