如何在python中将输出¤+固定为¥或$(货币格式)

时间:2019-02-28 07:27:27

标签: python flask

如何更改货币格式输出->¤+ <-转换为人民币(¥)

@app.route("/tes")
def tes():
    locale.setlocale(locale.LC_ALL, 'cny')
    totalPrice = locale.currency( 18000, grouping=True)
    format(totalPrice)
    return totalPrice

输出->¤+ 18,000.00

我想成为这样的输出->¥18,000.00

谢谢

0 个答案:

没有答案