有没有一种简单的方法可以用Python编写这个?
if(i-words < 0):
start_point = 0
else:
start_point = i - words
或者这是使用最小/最大的最简单方法?这是用于列表拼接。
我希望 start_point 始终为 0 或以上。
if(i-words < 0):
start_point = 0
else:
start_point = i - words
Or is this the easiest way using min/max? This is for lists splicing.
I want start_point to always be 0 or above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更好的方法是使限制更加明显,
这样,任何阅读的人都可以看到您正在限制一个值。
使用任何形式的
if
都有一个缺点,即需要计算两次i-words
。为此使用临时变量会使更多代码变得臃肿。因此,在这些情况下,请使用
max
和min
。Better is to make the limiting more obvious
This way, anyone reading can see that you're limiting a value.
Using any form of
if
has the disadvantage that you compute twicei - words
. Using a temporary for this will make more code bloat.So, use
max
andmin
in these cases.怎么样
,或者
甚至更好,最清晰的方法:
正如 Mihai 在他的评论中所说,最后一种方法不仅读和写更清晰,而且只评估一次值,如果它是函数调用,这可能很重要。
How about
or
or even better, the clearest way:
As Mihai says in his comment, the last way is not only clearer to read and write, but evaluates the value only once, which could be important if it's a function call.