Is there a more elegant way to write the following piece of Python?
[foo() for i in range(10)]
I want to accumulate the results of foo() in a list, but I don't need the iterator i.
|
Is there a more elegant way to write the following piece of Python?
I want to accumulate the results of foo() in a list, but I don't need the iterator i. |
|||
|
|
|
One way to do this is to use
This means exactly the same thing, but by convention the use of Presumably
to replicate the result of calling |
|||
|
|
|
By no means more elegant, but:
I think beyond that you have to go to Ruby ;) |
|||
|
|
|
If you are on Python 3.x, map returns an iterator instead of a list - just construct a list with it:
|
|||
|
|
|
although this trades your problem with a meaningless iterator i with a new meaningless argument to the lambda expression. |
|||
|
|