Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코딩독학
- 포인터
- 정렬알고리즘
- python3
- FLUTTER
- Python
- 부스트코스
- 자바
- 가상환경
- 속초여행
- 아스키코드
- 알고리즘
- 추상클래스
- popupmenubutton
- 남양주맛집
- 컴퓨터과학
- DOM
- pipenv
- 장고
- 노마드코더
- BeautifulSoup
- 성수동카페
- richtext
- 건대입구맛집
- JavaScript
- Django
- c언어문자열
- 상속
- 강원도속초맛집
- removetooltip
Archives
- Today
- Total
YUYANE
Python / float 소수점 자리 표기, 숫자에 콤마(,) 넣기 본문
목표
- float 형의 숫자를 소수점 아래 2자리 까지만 표기하자.
- 1000 단위로 숫자에 콤마/반점/',' 표시를 넣어주자.
소수점 자리 표기 정하기 (소수점 2자리까지 표기하는 코드)
value = 3.333333
# 소수점 2자리까지 표기
formatted_string = "{:.2f}".format(value)
#3.33
print(formatted_string)
#출처 : https://www.kite.com/python/answers/how-to-specify-the-number-of-decimal-places-in-python
숫자에 반점/콤마 표시 하기
number_with_commas = "{:,}".format(1000000)
#1,000,000
print(number_with_commas)
#출처 : https://www.kite.com/python/answers/how-to-add-commas-to-a-number-in-python
소수점 자리와 콤마 표기를 동시에 하고 싶다면?
amounts_format = "{:,.2f}".format(1000000.33333)
#1,000,000.33
print(amounts_format)
'Programming Languages > PYTHON' 카테고리의 다른 글
Python / map() (0) | 2021.02.18 |
---|---|
Python / CSV(Comma Separated Values) (0) | 2021.02.01 |
Python / Requests와 Beautiful Soup (웹스크래핑) (0) | 2021.01.30 |
Python / special method : __init__, __str__ (0) | 2021.01.25 |
Python / for와 range (0) | 2021.01.19 |
Comments