I'm trying to format these numbers. Example:
24.324324324324323
18.91891891891892
I want to delete the numbers behind it to be like this
24.3
18.9
what can use django template tags? or using some code?
I'm trying to format these numbers. Example:
24.324324324324323
18.91891891891892
I want to delete the numbers behind it to be like this
24.3
18.9
what can use django template tags? or using some code?
You can use floatformat filter tag in your template , here is an exampe:
value = 12.3436547654756756
{{ value|floatformat }} =====> 12.34