Skip to content

Instantly share code, notes, and snippets.

@hlassiege
Created May 3, 2018 09:27
Show Gist options
  • Save hlassiege/8e547f939496dc973dbae11b84554f3f to your computer and use it in GitHub Desktop.
Save hlassiege/8e547f939496dc973dbae11b84554f3f to your computer and use it in GitHub Desktop.
format.py
import locale
import datetime
locale.setlocale( locale.LC_ALL, 'en_US' )
// va afficher : '$188518982.18'
locale.currency( 188518982.18 )
// va afficher '1,255,000'
locale.format("%d", 1255000, grouping=True)
// va afficher '12/13/2011 12:00:00 AM'
today=datetime.date.today()
today.strftime('%c')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment