我想将php代码转换为python3。
这是我的php代码
echo "<td class='text-left'>".number_format($amount,2)."</td>";
我想将此php转换成Python。请帮助我
答案 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