标签: django django-templates
我正在尝试转换,例如:
0.00282357936911 to 2.82e-03 and 0.000130076846614 to 1.30e-04
但是,当我使用过滤器{{ data|stringformat:"e" }}时,我得到了
{{ data|stringformat:"e" }}
2.823579e-03 and 1.300768e-04
有没有办法将四舍五入到2个小数点? 非常感谢提前。
答案 0 :(得分:3)
您可以使用:
{{ data|stringformat:".2e" }}
.<number>语法指定小数点数。有关详细信息,请参阅reference。
.<number>