Code Monkey home page Code Monkey logo

Comments (2)

fbaptiste avatar fbaptiste commented on July 3, 2024 1

Thanks @Rid1-fz-06 for that observation, and thanks @amirsoroush for that explanation!

Indeed, if you do not iterate the sub generators in sequence too, you can get into that situation.

There is no clean way around that since you are going to deal with closures and cannot control "breaking" that free variable.

If you really need the ability to first generate all the sub generators, and then iterate through them, this way:

all_gens = [gen for gen in mult_list()]
for g in all_gens:
    print(list(g))

then you are going to have to work a bit harder. Something like this will work - basically generate all the values first into a single generator, then use another generator to "split" the results back into the required rows of data:

start = 1
stop = 10
r1 = (
    i * j
    for i, j in product(range(start, stop + 1), range(start, stop + 1))
)

r2 = (
    (next(r1) for _ in range(stop - start + 1))
    for __ in range(stop - start + 1)
)

all_gens = [gen for gen in r2]
for g in all_gens:
    print(list(g))

I would point out though, that using

all_gens = [gen for gen in r2]
for g in all_gens:
    print(list(g))

is kind of missing the point of generators - which is to create iterables that are lazy evaluated. You can make a list of the sub generators, but why? It's not like you can go through each one repeatedly - so unless you are planning on extracting just a subset of the sub generators, I see no reason to do it (and in that case, just have your main generator generate just the subset you want in the first place).

from python-deepdive.

amirsoroush avatar amirsoroush commented on July 3, 2024

Hi @Rid1-fz-06, Good point.

Whether they generate equivalent result or not depends on how you get the items from the nested generator.

As you mentioned, this:

((i * j for j in range(start, stop + 1)) for i in range(start, stop + 1))

Is equivalent to: (I removed unnecessary global and nonlocal keyword you defined)

def mult_list():
    for i in range(start, stop + 1):
        def inner():
            for j in range(start, stop + 1):
                yield i * j
        yield inner()

Now if you create all generator expressions first, then iterate through them, i is going to be bound to the latest value gotten from range object:

all_gens = [gen for gen in mult_list()]
for g in all_gens:
    print(list(g))

output:

[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]

But if you iterate through generators right after you defined them, it will going to generate the same result as your first nested list comprehension:

for gen in mult_list():
    print(list(gen))

output:

[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
[3, 6, 9, 12, 15, 18, 21, 24, 27, 30]
[4, 8, 12, 16, 20, 24, 28, 32, 36, 40]
[5, 10, 15, 20, 25, 30, 35, 40, 45, 50]
[6, 12, 18, 24, 30, 36, 42, 48, 54, 60]
[7, 14, 21, 28, 35, 42, 49, 56, 63, 70]
[8, 16, 24, 32, 40, 48, 56, 64, 72, 80]
[9, 18, 27, 36, 45, 54, 63, 72, 81, 90]
[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]

In both cases(nested list comp and nested generator expression), i "is" a free variable but as you can see if you consume the generator expression right after its definition, i has the desired value at that time.

from python-deepdive.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.