Curso de Programación en Python/ConversionesNumericos
< Curso de Programación en Python
Ir a la navegación
Ir a la búsqueda
Revisión del 23:00 12 sep 2014 de Rrc (discusión | contribuciones)
Funciones de Conversiones Númericos:
Function | Returns ( description ) |
---|---|
int(x) | convert x to a plain integer |
long(x) | convert x to a long integer en Python 2.x, NO en 3.x |
float(x) | convert x to a floating-point number |
complex(x) | convert x to a complex number with real part x and imaginary part zero |
complex(x, y) | convert x and y to a complex number with real part x and imaginary part y. x and y are numeric expressions |