-
[Python] babel을 이용해서 통화기호와 comma 붙여주기Python 2021. 11. 6. 19:05
from babel.numbers import format_currency USD = format_currency(1000, 'USD', locale='en_US') print(USD) => $1,000
Babel 공식문서
http://babel.pocoo.org/en/latest/api/numbers.html#babel.numbers.format_currency
'Python' 카테고리의 다른 글
[Python] Flask, render_template 초기 설정 (0) 2021.11.09 [Python] black : Code Formatter (0) 2021.11.09 [Python] BeautifulSoup을 이용해서 Table 크롤링하기 (0) 2021.11.06 [Python] os, sys 사용 해서 프로그램 파일 재 실행 (0) 2021.11.04 [Python] 원하는 파이썬 버젼에 패키지 다운받기 (0) 2021.11.04