我想知道如何将django数据表中的数字格式化为货币和%格式?
12345 => $一二三四五
0.01 => 1%
答案 0 :(得分:1)
Django没有内置的货币和百分比过滤器。您可以编写自定义筛选器或使用第三方程序包。为了显示货币,有一个Django应用程序:
https://github.com/panosl/django-currencies
关于百分比已经存在SO的问题:
Is there a django template filter to display percentages?