Is there a short way to call a function twice or more consecutively in python? For example:
do()
do()
do()
maybe like :
3*do()
|
Is there a short way to call a function twice or more consecutively in python? For example:
maybe like :
| |||
|
feedback
|
|
I would:
The You might also see some people write:
however that is slightly more expensive because it creates a list containing the return values of each invocation of | |||||||||||
feedback
|
|
You could define a function that repeats the passed function N times.
If you want to make it even more flexible, you can even pass arguments to the function being repeated:
Usage:
| ||||
|
feedback
|
|
A simple for loop?
Or, if you're interested in the results and want to collect them, with the bonus of being a 1 liner:
| |||||||||||
feedback
|
3 * do()is a valid Python expression with a very well defined result: it does multiply the return value of callingdoonce by 3. It would be possible, however, to write a decorator to enable one to write things such as (3 * do)() - with a variante of the answer at stackoverflow.com/questions/8998997/product-of-two-functions/… – jsbueno Jan 28 at 23:16