■ str 클래스의 format 메소드에서 천단위 콤마를 삽입하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 |
print("{:,}".format(12345678910 )) # 12,345,678,910 print("{:0,.1f}".format(12345678910 )) # 12,345,678,910.0 print("{:0,.1f}".format(12345678910.18275)) # 12,345,678,910.2 print("{:0,.2f}".format(12345678910 )) # 12,345,678,910.00 print("{:0,.2f}".format(12345678910.18275)) # 12,345,678,910.18 |