I am trying to print an integer in Python 2.6.1 with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? I have seen many examples on Google, but I am looking for the simplest practical way.

It does not need to be locale-specific to decide between periods and commas. I would prefer something as simple as reasonably possible.

link|improve this question

55% accept rate
feedback

10 Answers

up vote 50 down vote accepted

I got this to work:

>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'en_US')
'en_US'
>>> locale.format("%d", 1255000, grouping=True)
'1,255,000'

Sure, you don't need internationalization support, but it's clear, concise, and uses a built-in library.

P.S. That "%d" is the usual %-style formatter. You can have only one formatter, but it can be whatever you need in terms of field width and precision settings.

P.P.S. If you can't get locale to work, I'd suggest a modified version of Mark's answer:

def intWithCommas(x):
    if type(x) not in [type(0), type(0L)]:
        raise TypeError("Parameter must be an integer.")
    if x < 0:
        return '-' + intWithCommas(-x)
    result = ''
    while x >= 1000:
        x, r = divmod(x, 1000)
        result = ",%03d%s" % (r, result)
    return "%d%s" % (x, result)

Recursion is useful for the negative case, but one recursion per comma seems a bit excessive to me.

link|improve this answer
3  
I tried your code, and unfortunately, I get this: "locale.Error: unsupported locale setting". :-s – Mark Byers Nov 30 '09 at 23:25
4  
Mark: If you're on Linux, you might want to look at what is in your /etc/locale.gen, or whatever your glibc is using to build its locales. You might also want to try ""en", "en_US.utf8", "en_US.UTF-8", 'en_UK" (sp?), etc. mikez: There needs to be a book: "Dr. PEP: Or How I Learned to Stop Worrying and Love docs.python.org." I gave up memorizing all the libraries back around Python 1.5.6. As for locale, I use as little of it as I can. – Mike DeSimone Nov 30 '09 at 23:32
4  
You can use '' for setlocale to use the default, which hopefully will be appropriate. – Mark Ransom Nov 30 '09 at 23:49
4  
Try this: locale.setlocale(locale.LC_ALL, '') It worked for me – Nadia Alramli Dec 1 '09 at 0:00
5  
One advantage with doing it the simple way (like in my answer, and some others here) is that it is a) fully cross platform b) it does what the submitter wants regardless of the locale of the computer c) it doesn't depend on things that most people have never used before and that most people don't properly understand. This solution doesn't meet any of those requirements. Having said that, I think there is room on StackOverflow for both types of solution. – Mark Byers Dec 1 '09 at 7:10
show 8 more comments
feedback

Here is the locale grouping code after removing irrelevant parts and cleaning it up a little:

(The following only works for integers)

def group(number):
    s = '%d' % number
    groups = []
    while s and s[-1].isdigit():
        groups.append(s[-3:])
        s = s[:-3]
    return s + ','.join(reversed(groups))

>>> group(-23432432434.34)
'-23,432,432,434'


There are already some good answers in here. I just want to add this for future reference. In python 2.7 there is going to be a format specifier for thousands separator. According to python docs it works like this

>>> '{:20,.2}'.format(f)
'18,446,744,073,709,551,616.00'

In python3.1 you can do the same thing like this:

>>> format(1234567, ',d')
'1,234,567'
link|improve this answer
Wow, thanks for the info. It's nice to know that this will be easier in future. – Mark Byers Dec 1 '09 at 0:32
The format(...) syntax works for me in Python2.7.3... – Cerin May 20 at 18:15
Yeah, the harder ways are mainly for folks on older Pythons, such as those shipped with RHEL and other long-term support distros. – Mike DeSimone May 20 at 22:21
feedback

I'm sure there must be a standard library function for this, but it was fun to try to write it myself using recursion so here's what I came up with:

def intToStringWithCommas(x):
    if type(x) is not int and type(x) is not long:
        raise TypeError("Not an integer!")
    if x < 0:
        return '-' + intToStringWithCommas(-x)
    elif x < 1000:
        return str(x)
    else:
        return intToStringWithCommas(x / 1000) + ',' + '%03d' % (x % 1000)

Having said that, if someone else does find a standard way to do it, you should use that instead.

link|improve this answer
Unfortunately doesn't work in all cases. intToStringWithCommas(1000.1) -> '1.0001,000' – Nadia Alramli Nov 30 '09 at 23:53
He specifically said integers and that it should be as simple as possible, so I decided not to handle datatypes other than integers. I also made it explicit in the function name _int_ToStringWithCommas. Now I've also added a raise to make it more clear. – Mark Byers Dec 1 '09 at 0:20
You are right, discard my comment – Nadia Alramli Dec 1 '09 at 0:44
No worries! Having the extra input check is a good practice anyway. – Mark Byers Dec 1 '09 at 1:02
feedback

For inefficiency and unreadability it's hard to beat:

>>> import itertools
>>> s = '-1234567'
>>> ','.join(["%s%s%s" % (x[0], x[1] or '', x[2] or '') for x in itertools.izip_longest(s[::-1][::3], s[::-1][1::3], s[::-1][2::3])])[::-1].replace('-,','-')
link|improve this answer
5  
Voted up for most inefficient and unreadable method to answer this question. – psytek Jan 19 at 19:39
3  
Agreed, this should be in a textbook. – Gavin C Jan 19 at 19:41
2  
remarkably hard to understand, brilliant! – Sam_D Jan 19 at 19:41
would be nice if this at least would work. try this number "17371830" it becomes "173.718.3.0" =) – holms Feb 17 at 18:15
Periods? That ain't even possible, holms. This piece of junk totally ignores locale. I wonder how you got that result. Your example produces '17,371,830' for me, as expected. – Kasey Kirkham Feb 25 at 1:42
feedback

From the comments to activestate recipe 498181 I reworked this:

import re
def thous(x, sep=',', dot='.'):
    num, _, frac = str(x).partition(dot)
    num = re.sub(r'(\d{3})(?=\d)', r'\1'+sep, num[::-1])[::-1]
    if frac:
        num += dot + frac
    return num

It uses the regular expressions feature: lookahead i.e. (?=\d) to make sure only groups of three digits that have a digit 'after' them get a comma. I say 'after' because the string is reverse at this point.

[::-1] just reverses a string.

link|improve this answer
mate! you my saver! thank you, finally this is freaking solved. – holms Feb 17 at 18:26
feedback

Just subclass long (or float, or whatever). This is highly practical, because this way you can still use your numbers in math ops (and therefore existing code), but they will all print nicely in your terminal.

>>> class number(long):

        def __init__(self, value):
            self = value

        def __repr__(self):
            s = str(self)
            l = [x for x in s if x in '1234567890']
            for x in reversed(range(len(s)-1)[::3]):
                l.insert(-x, ',')
            l = ''.join(l[1:])
            return ('-'+l if self < 0 else l) 

>>> number(-100000)
-100,000
>>> number(-100)
-100
>>> number(-12345)
-12,345
>>> number(928374)
928,374
>>> 345
link|improve this answer
1  
>>> number(-100) -> "-,100" – Mark Byers Nov 30 '09 at 23:29
Fixed it. See new examples – twneale Dec 1 '09 at 0:09
7  
I like the subclass idea, but is __repr__() the correct method to override? I would suggest overriding __str__() and leaving __repr__() alone, because int(repr(number(928374))) ought to work, but int() will choke on the commas. – steveha Dec 1 '09 at 1:02
@steveha has a good point, but the justification should have been that number(repr(number(928374))) doesn't work, not int(repr(number(928374))). All the same, to make this approach work directly with print, as the OP requested, the __str__() method should be the one overridden rather than __repr__(). Regardless, there appears to be a bug in the core comma insertion logic. – martineau Oct 18 '10 at 12:29
feedback

Here's one that works for floats too:

def float2comma(f):
    s = str(abs(f)) # Convert to a string
    decimalposition = s.find(".") # Look for decimal point
    if decimalposition == -1:
        decimalposition = len(s) # If no decimal, then just work from the end
    out = "" 
    for i in range(decimalposition+1, len(s)): # do the decimal
        if not (i-decimalposition-1) % 3 and i-decimalposition-1: out = out+","
        out = out+s[i]      
    if len(out):
        out = "."+out # add the decimal point if necessary
    for i in range(decimalposition-1,-1,-1): # working backwards from decimal point
        if not (decimalposition-i-1) % 3 and decimalposition-i-1: out = ","+out
        out = s[i]+out      
    if f < 0:
        out = "-"+out
    return out

Usage Example:

>>> float2comma(10000.1111)
'10,000.111,1'
>>> float2comma(656565.122)
'656,565.122'
>>> float2comma(-656565.122)
'-656,565.122'
link|improve this answer
float2comma(12031023.1323) returns: '12,031,023.132,3' – Arnar Yngvason Jul 5 '11 at 21:53
feedback

For floats:

float(filter(lambda x: x!=',', '1,234.52'))
# returns 1234.52

For ints:

int(filter(lambda x: x!=',', '1,234'))
# returns 1234
link|improve this answer
1  
That removes the commas. While handy, the OP asked for a way to add them. Besides, something like float('1,234.52'.translate(None, ',')) might be more straightforward and possibly faster. – Dennis Williamson Dec 29 '11 at 23:14
feedback

I too, prefer the "simplest practical way". For >= 2.6, this seems up to the job:

"{:,}".format(value)

http://docs.python.org/library/string.html#format-specification-mini-language

link|improve this answer
feedback

If you don't want to depend on any external libraries:

 s = str(1234567)
 print ','.join([s[::-1][k:k+3][::-1] for k in xrange(len(s)-1, -1, -3)])

This works only for non-negative integers.

link|improve this answer
2  
-1 If the number is less than 1000 it only returns the first digit. – Pastor Bones May 9 at 5:07
feedback

Your Answer

 
or
required, but never shown

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