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.

link|improve this question

1  
kinda doubleposting, you could have used this topic you just started: stackoverflow.com/questions/6913166/… – Samuele Mattiuzzo Aug 2 '11 at 14:20
1  
nah, not at all. I wanted to separate this into the easy question (how to do it in Python) and the hard, obscure question that I doubt anyone will answer (how to do it in Django). Notice how this already has an answer. I'm now halfway to my final answer instead of 0% if I had posted them together. Besides that, separating the questions makes it easier for people to search for the answers. E.,g if Bob is searching for a decimal formatting question he might skip a SO questin with Django in the title. – Greg Aug 2 '11 at 14:26
yeah, it was just for my interest :P it's easier to follow one thread. basically it's similar to my answer (just a "bit" more specific). i'm hoping for a django answer too, btw. – Samuele Mattiuzzo Aug 2 '11 at 14:29
feedback

2 Answers

up vote 5 down vote accepted
'%.2E' % Decimal('40800000000.00000000000000')

# returns '4.08E+10'

In your '40800000000.00000000000000' there are many more significant zeros that have the same meaning as any other digit. That's why you have to tell explicitly where you want to stop.

If you want to remove all trailing zeros automatically, you can try:

def format_e(n):
    a = '%E' % n
    return a.split('E')[0].rstrip('0').rstrip('.') + 'E' + a.split('E')[1]

format_e(Decimal('40800000000.00000000000000'))
# '4.08E+10'

format_e(Decimal('40000000000.00000000000000'))
# '4E+10'

format_e(Decimal('40812300000.00000000000000'))
# '4.08123E+10'
link|improve this answer
4  
As an aside, despite the format % values syntax still being used even within the Python 3 standard library, I believe it's technically deprecated in Python 3, or at least not the recommended formatting method, and the current recommended syntax, starting with Python 2.6, would be '{0:.2E}'.format(Decimal('40800000000.00000000000000')) (or '{:.2E}' in Python 2.7+). While not strictly useful for this situation, due to the additional characters for no added functionality, str.format does allow for more complex mixing/rearranging/reutilizing of format arguments. – JAB Aug 2 '11 at 14:42
feedback

See tables from Python string formatting to select the proper format layout. In your case it's %.2E.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.