gpt4 book ai didi

python - 如何使用逗号作为千位分隔符打印数字

转载 作者:IT老高 更新时间:2023-10-28 12:00:33 27 4
gpt4 key购买 nike

如何打印以逗号作为千位分隔符的整数?

1234567   ⟶   1,234,567

在句点和逗号之间决定不需要特定于语言环境。

最佳答案

语言环境不知道

'{:,}'.format(value)  # For Python ≥2.7
f'{value:,}' # For Python ≥3.6

区域感知

import locale
locale.setlocale(locale.LC_ALL, '') # Use '' for auto, or force e.g. to 'en_US.UTF-8'

'{:n}'.format(value) # For Python ≥2.7
f'{value:n}' # For Python ≥3.6

引用

根据 Format Specification Mini-Language ,

The ',' option signals the use of a comma for a thousands separator. For a locale aware separator, use the 'n' integer presentation type instead.

关于python - 如何使用逗号作为千位分隔符打印数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1823058/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com