Advertisement
Guest User

decimal builtin python !

a guest
Feb 17th, 2020
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. Python 2.7.17 (default, Nov  7 2019, 10:07:09)
  2. [GCC 7.4.0] on linux2
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> import decimal
  5. >>> decimal.Decimal('0.121')
  6. Decimal('0.121')
  7. >>> decimal.Decimal('0.121') + decimal.Decimal('0.121')
  8. Decimal('0.242')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement