Python格式化千分位数字

Python 2.7及以上版本直接使用format设置千分位分隔符

Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:25:58) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> format(1234567890, ',')
'1,234,567,890'
>>>

正则实现

import re
def number_format(s):
    s = str(s)
    while True:
        (s, count) = re.subn(r"(\d)(\d{3})((:?,\d\d\d)*)$", r"\1,\2\3", s)
        if count == 0 : break
    return s
print number_format(1234567890)

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/22/python-format-thousandth-digits/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Python格式化千分位数字
Python 2.7及以上版本直接使用format设置千分位分隔符 Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:25:58) [MSC v.1500 64 bit (AMD64)] on win32 Ty……
<<上一篇
下一篇>>
文章目录
关闭
目 录