【发布时间】:2015-02-08 19:19:10
【问题描述】:
是否有一个 django 模板过滤器可以只获取浮点数之后的数字?
例如:
2.34 --> 34
2.00 --> 00
1.10 --> 10
我在https://docs.djangoproject.com/en/dev/ref/templates/builtins/没有找到答案。
【问题讨论】:
-
你总是可以自己写...
标签: python django floating-point django-templates django-template-filters