Search code examples
pythongenerator

How to get one value at a time from a generator function in Python?


Very basic question - how to get one value from a generator in Python?

So far I found I can get one by writing gen.next(). I just want to make sure this is the right way?


Solution

  • Yes, or next(gen) in 2.6+.