remove unnecssary 0's in decimal.Decimal object code example
Example: drop-trailing-zeros-from-decimal python
>>> s = str(Decimal('1500'))
>>> print s.rstrip('0').rstrip('.') if '.' in s else s
1500
>>> s = str(Decimal('1500'))
>>> print s.rstrip('0').rstrip('.') if '.' in s else s
1500