When is not a good time to use python generators?

Use a list instead of a generator when:

1) You need to access the data multiple times (i.e. cache the results instead of recomputing them):

for i in outer:           # used once, okay to be a generator or return a list
    for j in inner:       # used multiple times, reusing a list is better
         ...

2) You need random access (or any access other than forward sequential order):

for i in reversed(data): ...     # generators aren't reversible

s[i], s[j] = s[j], s[i]          # generators aren't indexable

3) You need to join strings (which requires two passes over the data):

s="".join(data)                # lists are faster than generators in this use case

4) You are using PyPy which sometimes can’t optimize generator code as much as it can with normal function calls and list manipulations.

Leave a Comment