Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. from decimal import *
  2.  
  3. decimal = Decimal(10.5)
  4. print(decimal)
  5.  
  6. decimal = decimal * 2
  7. print (decimal)