Skip to content

Instantly share code, notes, and snippets.

@ashour
Last active March 12, 2020 17:01
Show Gist options
  • Save ashour/f8ae851d17ae8a55b2cad9c5a6ef0069 to your computer and use it in GitHub Desktop.
Save ashour/f8ae851d17ae8a55b2cad9c5a6ef0069 to your computer and use it in GitHub Desktop.
from babel.numbers import format_decimal
value = 123456.78
print(format_decimal(value, locale='en_US')) # => 123,456.78 (American format)
print(format_decimal(value, locale='fr_FR')) # => 123 456,78 (French format)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment