Python Language
로켈 모듈
수색…
비고
Python 2 문서 : [ https://docs.python.org/2/library/locale.html#locale.currency] [1 ]
locale 모듈을 사용하여 통화를 미국 달러로 포맷합니다.
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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow