I have a set of functions:
functions=set(...)
All the functions need one parameter x.
What is the most efficient way in python of doing something similar to:
for function in functions:
function(x)
feedback
|
|
The code you give,
...does not appear to do anything with the result of calling Avoid functions with side-effects in list-comprehensions. As for efficiency: I expect that using anything else instead of your simple loop will not improve runtime. When in doubt, use
But again, even if these tests would have indicated that list-comprehensions are faster, the point remains that you should not use them when side-effects are involved, for readability's sake. †: Well, I'd write | |||||||
feedback
|
|
If you need the output, a list comprehension would work.
| |||
|
feedback
|
|
I'm somewhat doubtful of how much of an impact this will have on the total running time of your program, but I guess you could do something like this:
The downside is that you will create a new list that you immediatly toss away, but it should be slightly faster than just the for-loop. In any case, make sure you profile your code to confirm that this really is a bottleneck that you need to take care of. | |||||
feedback
|
|
Edit: I redid the test using timeit My new test code:
Here is the results from this timing.
My original, time.time() based timings are pretty much inline with this testing, plain for loops seem to be the most efficient. | ||||
|
feedback
|