vote up 2 vote down star

I have a float: 1.2333333

How do I change it into a two decimal number with a comma as a decimal point separator, eg 1,23?

flag
dupe: stackoverflow.com/questions/316238/… – Ólafur Waage Oct 7 at 9:10
@Ólafur Waage - the locale stuff is not in stackoverflow.com/questions/316238/… – Dominic Rodger Oct 7 at 9:12

3 Answers

vote up 4 vote down check

To get two decimals, use

'%.2f' % 1.2333333

To get a comma, use replace():

('%.2f' % 1.2333333).replace('.', ',')

A second option would be to change the locale to some place which uses a comma and then use locale.format():

locale.setlocale(locale.LC_ALL, 'FR')
locale.format('%.2f', 1.2333333)
link|flag
This is absolutely wrong. the normal "%f" string formatter is not locale-dependent. – kaizer.se Oct 7 at 10:04
Sometimes, it is: bugs.webkit.org/show_bug.cgi?id=18994 I've improved my answer to avoid the ambiguity. – Aaron Digulla Oct 7 at 10:39
vote up 1 vote down

The locale module can help you with reading and writing numbers in the locale's format.

>>> import locale
>>> locale.setlocale(locale.LC_ALL, "")
'sv_SE.UTF-8'
>>> locale.format("%f", 2.2)
'2,200000'
>>> locale.format("%g", 2.2)
'2,2'
>>> locale.atof("3,1415926")
3.1415926000000001
link|flag
vote up 0 vote down

If you don't want to mess with the locale, you can of course do the formatting yourself. This might serve as a starting point:

def formatFloat(value, decimals = 2, sep = ","):
  return "%s%s%0*u" % (int(value), sep, decimals, (10 ** decimals) * (value - int(value)))

Note that this will always truncate the fraction part (i.e. 1.04999 will print as 1,04).

link|flag

Your Answer

Get an OpenID
or

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