Python: Importando Funções Matemáticas

From Wiki
Revision as of 18:30, 18 September 2018 by Ebasso (talk | contribs) (Criou a página com " ==== Importando a lib ==== import math ==== Importando com um alias ==== import math as m ==== Importando apenas algumas funções ==== from math import sqrt,pow =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)

Ver também