I'm trying to parse a near 0 number using the decimal.Decimal python module:
>>> import decimal
>>> from decimal import Decimal
>>> Decimal("0.00000161")
Decimal('0.00000161')
>>> Decimal("0.00000061")
Decimal('6.1E-7')
>>>
What would be the best way to print "0.00000061" instead of "6.1E-7"?