Python中的货币格式

时间:2023-04-26
本文介绍了Python中的货币格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我希望使用 Python 将 188518982.18 等数字格式化为 £188,518,982.18.

I am looking to format a number like 188518982.18 to £188,518,982.18 using Python.

我该怎么做?

推荐答案

查看 locale 模块.

这会进行货币(和日期)格式设置.

This does currency (and date) formatting.

>>> import locale
>>> locale.setlocale( locale.LC_ALL, '' )
'English_United States.1252'
>>> locale.currency( 188518982.18 )
'$188518982.18'
>>> locale.currency( 188518982.18, grouping=True )
'$188,518,982.18'

这篇关于Python中的货币格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:Python中的字符串格式化 下一篇:pandas :设置编号.最大行数

相关文章

最新文章