python에서 숫자 또는 문자열을 뽑아 왔는데 화폐 형식( 100,000,000 ) 이거나 숫자, 문자열을 화폐 형식으로 변환할 때
1. 화폐 형식 -> 숫자 or string
# delete thousand sperator
x = '100,000,000'
x = x.replace(',' , '')
2. int or float or string -> 화폐 형식
# insert thousands seperator
# if string, convert to int or float before insert thousands seperator
x = 1000000
x= f'{x:,}'
f-string이 참 편리하긴 하네요. 굿
'Programming' 카테고리의 다른 글
python decorator와 spring AOP (0) | 2022.02.01 |
---|---|
CI/CD를 통해 AWS lambda 코드 관리/배포해보기(1) (0) | 2021.04.22 |
Google spreadsheet Json / connection error (0) | 2021.01.30 |
링크드인 python/Django 실력 평가 후기 (0) | 2021.01.16 |
어떤 방식으로 TDD를 해야할까? #2 (0) | 2020.11.21 |