Skip to content

Instantly share code, notes, and snippets.

@sugiana
Created September 15, 2013 12:20
Show Gist options
  • Save sugiana/6570329 to your computer and use it in GitHub Desktop.
Save sugiana/6570329 to your computer and use it in GitHub Desktop.
import locale
locale.setlocale(locale.LC_ALL, 'id_ID.utf8')
def money(n):
return locale.format('%d', n, True)
if __name__ == '__main__':
print(money(12345))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment