python如何使范围包括结束边界

时间:2017-11-06 17:04:56

标签: python python-3.x range

我想让range包括结束边界,

if distance == 1:
     end_boundary = int(d + distance + distance)
else:
     end_boundary = int(d + distance + distance - 1)

for y in range(int(d - distance), end_boundary):
    # some other code

d包含int值,我想知道是否有更好的方法来执行此操作。

此外,我想在ddistance包含float值时使此代码生效。

0 个答案:

没有答案