vote up 8 vote down star
2

Hey,

I am looking to format a number like 188518982.18 to £188,518,982.18 using Python.

How can I do this?

Cheers

flag

4 Answers

vote up 22 vote down check

See the locale module.

This does currency (and date) formatting.

>>>import locale
>>> locale.setlocale( locale.LC_ALL, '' )
'English_United States.1252'
>>> locale.currency( 188518982.18 )
'$188518982.18'
>>> locale.currency( 188518982.18, grouping=True )
'$188,518,982.18'
link|flag
How would I format a non-native currency correctly, Say I'm showing a cost in GB pounds for a Japanese language report? – TokenMacGuy Jul 4 at 16:44
@TokenMacGuy: That's a Trick Question. Japanese report means japanese comma and decimal place rules but GB Pound currency symbol -- not trivially supported by Locale. You have to create a customized locale definition. – S.Lott Jul 4 at 17:10
if giver number is negative returns the value between "( )" why? – panchicore Oct 24 at 20:07
@panchicore: I'm not sure I understand the question. Negative numbers are shown in ()'s for exactly one trivially obvious reason: that's the locale's of negative currency format. What's your real question? – S.Lott Oct 24 at 21:29
vote up 1 vote down

Oh, that's an interesting beast.

I've spent considerable time of getting that right, there are three main issues that differs from locale to locale: - currency symbol and direction - thousand separator - decimal point

I've written my own rather extensive implementation of this which is part of the kiwi python framework, check out the LGPL:ed source here:

http://svn.async.com.br/cgi-bin/viewvc.cgi/kiwi/trunk/kiwi/currency.py?view=markup

The code is slightly Linux/Glibc specific, but shouldn't be too difficult to adopt to windows or other unixes.

Once you have that installed you can do the following:

>>> from kiwi.datatypes import currency
>>> v = currency('10.5').format()

Which will then give you:

'$10.50'

or

'10,50 kr'

Depending on the currently selected locale.

The main point this post has over the other is that it will work with older versions of python. locale.currency was introduced in python 2.5.

link|flag
Does it have advantages over locale.currency() ? – Ali A Nov 28 '08 at 0:29
Only that it works in pre-python 2.5. – Johan Dahlin Dec 4 '08 at 17:53
vote up 0 vote down

I've come to look at the same thing and found python-money not really used it yet but maybe a mix of the two would be good

link|flag
vote up 1 vote down

My locale settings seemed incomplete, so I had too look beyond this SO answer and found:

http://docs.python.org/library/decimal.html#recipes

OS-independent

Just wanted to share here.

link|flag

Your Answer

Get an OpenID
or

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