Skip to content

Instantly share code, notes, and snippets.

@inclement
Created September 15, 2014 23:31
Show Gist options
  • Select an option

  • Save inclement/9ea9ae1635c162285f7e to your computer and use it in GitHub Desktop.

Select an option

Save inclement/9ea9ae1635c162285f7e to your computer and use it in GitHub Desktop.
def format_percent(number, format=None, locale='en_US'):
return '0.34%'
>>> format_percent(0.34/100, '#,###.##%', locale='en_US')
'0.34%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment