■ format 함수에서 천단위 콤마를 삽입하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 |
print(format(12345678910, ',d')) # 12,345,678,910 print(format(12345678910, ',f')) # 12,345,678,910.000000 print(format(12345678910 , ',d')) # 12,345,678,910 print(format(12345678910.18275, ',f')) # 12,345,678,910.18275 print(format(12345678910 , ',')) # 12,345,678,910 print(format(12345678910.18275, ',')) # 12,345,678,910.18275 |