Comment on Python: copying a list the right wayparentComments−Peaker14yYou can't copy a generator that way.Using list(gen) will fully consume the generator, which may be undesirable, but at least it will generate a list with the correct values.
Comments
You can't copy a generator that way.
Using list(gen) will fully consume the generator, which may be undesirable, but at least it will generate a list with the correct values.