How can I display this:
Decimal(‘40800000000.00000000000000’) as ‘4.08E+10’?
I’ve tried this:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
But it has those extra 0’s.
How can I display this:
Decimal(‘40800000000.00000000000000’) as ‘4.08E+10’?
I’ve tried this:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
But it has those extra 0’s.