作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当使用无限生成器时,我可以使用 if
来阻止项目进入列表,但不是为了打破循环。
这实际上会崩溃并挂起。甚至 KeyboardInterrupt
也救不了我(顺便说一句,这是为什么?)
import itertools
a = [x for x in itertools.count() if x<10]
如果我使用自己的无限生成器
def mygen():
i=0
while True:
yield i
i +=1
这将一直运行到 KeyboardInterrupt
a = [x for x in mygen() if x<10]
现在,显然对于一个合适的 for
循环,我们可以在满足条件时中断
a = []
for x in itertools.count():
a.append(x)
if x>9:
break
所以我的问题是:有什么方法可以打破列表理解吗?
最佳答案
使用 itertools.takewhile
在不再满足条件后停止迭代...:
import itertools
a = [x for x in itertools.takewhile(lambda L: L < 10, itertools.count())]
# a = list(itertools.takewhile(lambda L: < 10, itertools.count()))
本身没有一种方法可以打破列表组合,因此限制可迭代(takewhile
或 islice
等...是一种方式去……)
关于python - 有没有办法突破列表理解?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38415586/
我是一名优秀的程序员,十分优秀!