Using list(gen) will fully consume the generator, which may be undesirable, but at least it will generate a list with the correct values.
Using list(gen) will fully consume the generator, which may be undesirable, but at least it will generate a list with the correct values.