Python: Estructuras de datos: Números
Importante: No se puede hacer operaciones de diferente tipo sin convertir antes todos los operandos al mismo tipo.
In [1]: 13 / 3 Out[1]: 4.333333333333333 In [2]: 13 // 3 Out[2]: 4 In [3]: 2 ** 8 Out[3]: 256 In [4]: 7 % 2 Out[4]: 1 In [5]: round(4.32635, 2) Out[5]: 4.33
El [1] devuelve un valor de tipo float
y el [2] devuelve un valor de tipo int
.
Más información en: tipos numéricos