Created
January 16, 2018 23:33
-
-
Save Fhernd/18d8cd50d2c3ed32483305866e9a7bfc to your computer and use it in GitHub Desktop.
Creación de números decimales.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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