Python: Importando Funções Matemáticas

From Wiki
Revision as of 01:27, 28 September 2018 by Ebasso (talk | contribs) (→‎Verificando o help)
(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

#!/usr/bin/python
from math import sqrt,pow

print "math.sqrt(100) : ", sqrt(100)

Resultado: math.sqrt(100) : 10

Verificando o help

>>> import math
 
>>> help(math)

Ver também