如何将php number_format()函数转换为python

时间:2019-06-25 06:48:23

标签: php python

我想将php代码转换为python3。

这是我的php代码

echo "<td class='text-left'>".number_format($amount,2)."</td>";

我想将此php转换成Python。请帮助我

1 个答案:

答案 0 :(得分:0)

import locale


def number_format(num, places=0):
    return locale.format_string("%.*f", (places, num), True)

使用:

print(number_format(12345.6789, 2))

结果:

12345.68

More info