Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 16, 2018 23:33
Show Gist options
  • Save Fhernd/18d8cd50d2c3ed32483305866e9a7bfc to your computer and use it in GitHub Desktop.
Save Fhernd/18d8cd50d2c3ed32483305866e9a7bfc to your computer and use it in GitHub Desktop.
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