как изменить вывод форматирования валюты -> ¤ + <- на юань (¥) </p>
@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
Спасибо