内联 for in 表达式求值
有没有办法可以内联这个 for 循环?
already_inserted = True
for i in indexes:
already_inserted = already_inserted and bitfield[i]
Is there a way I could inline this for loop?
already_inserted = True
for i in indexes:
already_inserted = already_inserted and bitfield[i]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
How about:
all() 函数接受 iterable 并会自动遍历所有元素并对每个元素应用 bool 。因此,这样写就足够了:
all() function accepts iterable and will automatically go over all elements and apply bool to each of them. Therefore, it is sufficient to write: