我想让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
值,我想知道是否有更好的方法来执行此操作。
此外,我想在d
和distance
包含float
值时使此代码生效。