How do I run a function on a loop so all the results go straight into a list and is there a way to run a function which acts on all the values in a list?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Theres a couple ways to run a function on a loop like that - You can either use a list comprehension
and use that result Or you could use the map function
The first answer is more "pythonic", while the second is more functional. EDIT: The second way is also a lot faster, as it's not running arbitrary code to call a function, but directly calling a function using |
|||||
|
|
Your question needs clarification. run a function on a loop
run a function acting on all values in a listYour function should have some form of iteration in its code to process all items of a sequence, something like:
Then you just call it with a sequence (i.e. a list, a string, an iterator etc)
YMMV. |
|||
|
|
|
This example shows how to do it (run it in an interpreter)
|
||||
|
|