Django 中的小数点四舍五入

发布于 2024-08-04 15:43:35 字数 65 浏览 5 评论 0原文

我想将小数值四舍五入如下:

7,715.625 变为 7,716

如何实现此目的?

I want to round off my decimal values as below:

7,715.625 becomes 7,716

How do I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

岁月染过的梦 2024-08-11 15:43:35

如果您不关心逗号,则 floatformat< /code>会完成这项工作:

{{ value|floatformat:"0" }}

如果您确实关心逗号,您需要:(

{{ value|floatformat:"0"|intcomma }}

向 Stephen 指出 intcomma 致敬!)

If you don't care about the commas, then floatformat will do the job:

{{ value|floatformat:"0" }}

If you do care about commas, you want:

{{ value|floatformat:"0"|intcomma }}

(Hat tip to Stephen for pointing me at intcomma!)

倒带 2024-08-11 15:43:35

要使用 intcomma 过滤器,您应该将 django.contrib. humanize 添加到您的 INSTALLED_APPS 设置中,并添加 {% load humanize %} 在模板中。

To use intcomma filter, you should add django.contrib.humanize to your INSTALLED_APPS setting and {% load humanize %} in a template.

心奴独伤 2024-08-11 15:43:35

您可以在 django 上使用以下命令来完成此操作,参数“0”将其四舍五入以排除小数位,但您可以更改它。

number = 7715.625
rounded_number = round(number,0)

You can do it with the below on django, the argument "0" rounds it to exclude decimal places, but you can change it.

number = 7715.625
rounded_number = round(number,0)
山有枢 2024-08-11 15:43:35

您只需要使用舍入函数,也不需要指定数字。默认情况下,它从给定的浮点值返回一个整数。

number = 7715.615
rounded_number = round(number)

You just need to use the round function and there is no need to specify the digits either. By default it returns an integer from the given float value.

number = 7715.615
rounded_number = round(number)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文