作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是条件。
if (car.y < 100): car.y = 100
if (car.y + car.height) > 500: car.y = 500 - car.height
我想知道如何使用 min 和 max 来写这个。
car.y = max(100, min(500, car.y - car.height))
据我所知,
min(500, car.y - car.height)
如果
500 < car.y - car.height
返回 500 ,这意味着它永远不能超过 500,限制了上限,因为它在
max(100, ...)
,较低的值不能小于 100。
for i in range(100):
print(max(100, min(500, random.randint(10, 1000) - random.randint(10, 1000))))
现在这就是我被困的地方。
y = 100
height = 10
while True:
if (y < 100): y = 100
if (y + height) > 500: y = 500 - height
y += 1
print(y)
它的行为符合预期,但在以下情况下:
y = 100
height = 10
while True:
y = max(100, min(500, y - height))
y += 1
print(y)
它只是连续打印 101 并且根本不增加。一直卡在101。谢谢你帮我。
最佳答案
与 Blue_notes 的回答相同,只是反过来。
car.y = max(car.y, 100);
car.y = min(car.y, 500-car.height)
或者如果你想把它作为一行
car.y = min(max(car.y, 100),500 - car.height)
关于python - 有没有办法使用 min 和 max 来编写这个 if-else?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66371648/
我是一名优秀的程序员,十分优秀!