Simplify array processing and enumerate to a one-liner

76 Views Asked by At

How can I simplify the following:

imgs = []
for i, obj in enumerate(objlist):
    imgs.append(  foo(obj, f"img-{i}.png")  )

where objlist an array of objects and foo is a method that processes the object and saves an image receiving both the object and the new file name, it returns the same name given.

1

There are 1 best solutions below

1
On

This is a simple transformation into a list comprehension:

imgs = [foo(obj, f"img-{i}.png") for (i, obj) in enumerate(objlist)]

(btw you forgot the in in your for loop.

Also, see this answer on the general problem of converting nested for loops into a single list comprehension.