Skip to content

Instantly share code, notes, and snippets.

@ehmo
Created May 21, 2015 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehmo/14ee99b483a4b2456208 to your computer and use it in GitHub Desktop.
Save ehmo/14ee99b483a4b2456208 to your computer and use it in GitHub Desktop.
>>> import locale
>>> locale.setlocale(locale.LC_ALL, 'en_US')
'en_US'
>>> = locale.format("%d", 123456789, grouping=True)
123,456,789
>>> locale.setlocale(locale.LC_ALL, 'sk_SK')
'sk_SK'
>>> locale.format("%d", 123456789, grouping=True)
123 456 789
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment