Hey,
I am looking to format a number like 188518982.18 to £188,518,982.18 using Python.
How can I do this?
Cheers
|
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
|
||
|
|
|
|
See the locale module. This does currency (and date) formatting.
|
||||||||
|
|
|
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:
Which will then give you:
or
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. |
||||
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|