I can use if
and for
in list comprehensions/generator expressions as
list(i for i in range(100) if i*i < 30)
I know this is not the most efficient but bear with me as the condition could be much more complicated and this is just an example. However, this still goes through hundred iterations and only yields a value in the first 6. Is there a way to tell the generator expression where to stop with something like this:
list(i for i in range(100) while i*i < 30)
However, while
is not understood in generator expressions. So, my question is, how do I write a generator expression with a stopping condition so it does not continue computation, even if it doesn't yield new values.
[i for i in range(100)]
– Evocation