如何在Python中添加逗号?

时间:2016-09-27 21:41:31

标签: python

我已完成此代码并且运行正常,我无法弄清楚如何在每个美元值中添加逗号。]

以下是代码的图片:Pic 1                            Pic 2

任何帮助都会很棒, 感谢。

1 个答案:

答案 0 :(得分:1)

您需要自己格式化浮点数。

或使用Babel库中的babel.numbers.format_currency。请参阅:http://babel.pocoo.org/en/latest/api/numbers.html

示例:

>>> format_currency(1099.98, 'USD', locale='en_US')
u'$1,099.98'

您也可以使用以下格式:

print ("${:,.2f}".format(1234.56))
# -> $1,234.56