Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 16, 2018 23:33
Creación de números decimales.
numero_decimal_1 = 7.
print(numero_decimal_1)
numero_decimal_2 = 1e3
print(numero_decimal_2)
numero_decimal_3 = float(-1)
print(numero_decimal_3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment