Funciones útiles en Python

Tutorial | Aprender Python

Matemática

abs()

Valor absoluto

In [1]:
abs(-4)
Out[1]:
4

math.ceil()

Máximo entero [201]

In [5]:
import math
math.ceil(3.4)
Out[5]:
4

math.floor()

Mínimo entero

In [4]:
import math
math.floor(3.4)
Out[4]:
3
Tutorial | Aprender Python