파이썬으로 금액 데이터를 사용하다 보면 천 단위로 구분하기 위해 쉼표를 찍어야 할 때가 있다.
예를 들어 770000원 보다 770,000원 이 더 보기 편하고 사용자 편의성이 좋다.
이번 글에서는 이렇게 천 단위로 쉼표를 표시해주는 간단한 파이썬 코드를 공유한다.
1. format 이용
# 금액을 천 단위로 쉼표를 찍어서 표시하는 함수
def format_amount(amount):
return "{:,}".format(amount)
# 예시 금액
amount = 770000
formatted_amount = format_amount(amount)
print(formatted_amount) # 출력: 770,000
2. f-string이용
# 금액을 천 단위로 쉼표를 찍어서 표시하는 함수
def format_amount(amount):
return f"{amount:,}"
# 예시 금액
amount = 770000
formatted_amount = format_amount(amount)
print(formatted_amount) # 출력: 770,000
이상
천 단위로 쉼표를 찍는
파이썬 코드를 공유합니다.
도움이 되셨다면 하트 눌러주세요~!
감사합니다~!
728x90
'파이썬 python' 카테고리의 다른 글
[python] warning 제거 (0) | 2024.06.25 |
---|---|
python logging (2) | 2023.09.19 |
파이썬 에러 : SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape (0) | 2022.11.10 |
selenium을 이용한 네이버 뉴스 날짜별 크롤링 (3) | 2021.12.20 |
파이썬에서 힙(heap) 사용하기 - heapq (0) | 2021.12.14 |