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?
gen.next()
Yes, or next(gen) in 2.6+.
next(gen)