Created
August 14, 2017 05:37
-
-
Save goutham2027/ead022b6453db6b6a542e8f450568f59 to your computer and use it in GitHub Desktop.
numbers to comma separated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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