Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string that represents a number which uses commas to separate thousands. How can I convert this to a number in python?

>>> int("1,000,000")

Generates a ValueError.

I could replace the commas with empty strings before I try to convert it, but that feels wrong somehow. Is there a better way?

share|improve this question

5 Answers

up vote 28 down vote accepted
import locale
locale.setlocale( locale.LC_ALL, 'en_US.UTF-8' ) 
locale.atoi('1,000,000')
# 1000000
locale.atof('1,000,000.53')
# 1000000.53
share|improve this answer
Aren't there locales where that won't work? – abyx Nov 22 '09 at 17:33
6  
+1, but please add the locale-setting (with a default locale of 'C' this would still give a ValueError!). – Alex Martelli Nov 22 '09 at 17:35
1  
I think the guru means something like this: locale.setlocale(locale.LC_ALL, 'en_US.UTF-8') – mbarkhau Nov 22 '09 at 17:40
Thanks for the comments. I've added a specific locale. – unutbu Nov 22 '09 at 17:58
Very nice. This way I can handle european numbers where the commas and points are switched too. Thanks. – dsimard Nov 22 '09 at 18:39
show 2 more comments

There are several ways to parse numbers with thousands separators. And I doubt that the way described by ~ubuntu is the best in all cases. That's why I list other ways too.

  1. The proper place to call setlocate() is in __main__ module. It's global setting and will affect the whole program and even C extensions (although note that LC_NUMERIC setting is not set at system level, but is emulated by Python). Read caveats in documentation and think twice before going this way. It's probably OK in single application, but never use it in libraries for wide audience. Probably you shoud avoid requesting locale with some particular charset encoding, since it might not be available on some systems.

  2. Use one of third party libraries for internationalization. For example PyICU allows using any available locale wihtout affecting the whole process (and even parsing numbers with particular thousands separators without using locales):

    NumberFormat.createInstance(Locale('en_US')).parse("1,000,000").getLong()

  3. Write your own parsing function, if you don't what to install third party libraries to do it "right way". It can be as simple as int(data.replace(',', '')) when strict validation is not needed.

share|improve this answer
+1 for recommending the simple way. That's all I needed when I had this same problem. – Michael Kristofik Jul 11 '11 at 14:21

This works:

>>> a='-1,234,567,89.0123'
>>> "".join(a.split(","))
'-123456789.0123'
share|improve this answer

I got locale error from accepted error, so here is what works here in Finland in Windows XP:

   import locale
   locale.setlocale( locale.LC_ALL, 'english_USA' )
   print locale.atoi('1,000,000')
   # 1000000
   print locale.atof('1,000,000.53')
   # 1000000.53
share|improve this answer

Replace the commas with empty strings, and turn the resulting string into an int or a float.

>>> a = '1,000,000'
>>> int(a.replace(',',''))
1000000
>>> float(a.replace(',',''))
1000000.0
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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