Advertisement
Fhernd

decimales.py

Jan 16th, 2018
968
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. numero_decimal_1 = 7.
  2. print(numero_decimal_1)
  3.  
  4. numero_decimal_2 = 1e3
  5. print(numero_decimal_2)
  6.  
  7. numero_decimal_3 = float(-1)
  8. print(numero_decimal_3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement