Python Language
Das Ländereinstellungsmodul
Suche…
Bemerkungen
Python 2-Dokumente: [ https://docs.python.org/2/library/locale.html#locale.currency]
Währungsformatierung in US-Dollar mit dem Gebietsschema-Modul
import locale
locale.setlocale(locale.LC_ALL, '')
Out[2]: 'English_United States.1252'
locale.currency(762559748.49)
Out[3]: '$762559748.49'
locale.currency(762559748.49, grouping=True)
Out[4]: '$762,559,748.49'
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow