Skip to content

Instantly share code, notes, and snippets.

@goutham2027
Created August 14, 2017 05:37
Show Gist options
  • Save goutham2027/ead022b6453db6b6a542e8f450568f59 to your computer and use it in GitHub Desktop.
Save goutham2027/ead022b6453db6b6a542e8f450568f59 to your computer and use it in GitHub Desktop.
numbers to comma separated
import locale
locale.setlocale( locale.LC_ALL, '' )
# for currency use locale.currency
locale.format("%d", 1000000000, grouping=True)
# o/p: 1,000,000,000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment