Python 和浮点数

发布于 2024-12-10 20:07:10 字数 163 浏览 0 评论 0原文

我有这个代码:

N = 10
for i in range(1,N):
    P[i,i] = (i/N) + pow((1-i/N),2)

但是我的除法运算正在四舍五入到最接近的整数。

如何指示 Python 进行浮点除法?

I have this code :

N = 10
for i in range(1,N):
    P[i,i] = (i/N) + pow((1-i/N),2)

But my division operations are getting rounded down to the nearest integer.

How can I instruct Python to do floating-point division?

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

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

发布评论

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

评论(3

合约呢 2024-12-17 20:07:10

你正在做整数除法。尝试这样的事情:

N = 10
for i in range(1,N):
    P[i,i] = (float(i)/N) + pow((1-float(i)/N),2)

You are doing integer division. Try something like this:

N = 10
for i in range(1,N):
    P[i,i] = (float(i)/N) + pow((1-float(i)/N),2)
柳絮泡泡 2024-12-17 20:07:10

将此行添加到脚本的顶部:

from __future__ import division

这将允许使用通常的除法运算符 / 进行整数除法以得到浮点数。如果还需要执行整数除法,可以使用 //

>>> 9/10 
0.90000000000000002
>>> 9//10
0

这将是 Python 3 中的标准行为。

Add this line to the top of your script:

from __future__ import division

This will allow division of integers to give floats with the usual division operator /. If you also need to perform integer division, you can use //:

>>> 9/10 
0.90000000000000002
>>> 9//10
0

This will be the standard behavior in Python 3.

﹂绝世的画 2024-12-17 20:07:10

在 Python 2.x 中,两个整数之间的除法是数学除法,但是是下限的。由于您要除两个整数,其中一个整数等于或小于另一个整数,因此会得到 1 和 0。

要获得正确的行为,请使用浮点数:

N = 10.0
for i in range(1, int(N) ):
    P[i,i] = (i/N) + pow((1-i/N),2)

请注意,Python 3.x 对两个整数进行数学除法

In Python 2.x, division between two integers is the mathematical division, but floored. Since you're dividing two integers, one being equal or smaller than the other, you get 1s and 0s.

To have the correct behavior, use floats:

N = 10.0
for i in range(1, int(N) ):
    P[i,i] = (i/N) + pow((1-i/N),2)

Note that Python 3.x does mathematical division with two integers

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