Is there a short way to call a function twice or more consecutively in python? For example:

do()
do()
do()

maybe like :

3*do()
link|improve this question

75% accept rate
1  
Note that 3 * do() is a valid Python expression with a very well defined result: it does multiply the return value of calling do once 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
feedback

3 Answers

up vote 6 down vote accepted

I would:

for _ in range(3):
    do()

The _ is convention for a variable whose value you don't care about.

You might also see some people write:

[do() for _ in range(3)]

however that is slightly more expensive because it creates a list containing the return values of each invocation of do() (even if it's None), and then throws away the resulting list. I wouldn't suggest using this unless you are using the list of return values.

link|improve this answer
1  
I think it's never a good idea to use a list comprehension just to repeat actions – julio.alegria Jan 28 at 19:58
1  
That's true. I should be more explicit that I'm not actually recommending that. – Greg Hewgill Jan 28 at 19:59
Yeah, List Comprehensions are meant to create new lists and should not be used for side-effects. – g.d.d.c Jan 28 at 21:13
feedback

You could define a function that repeats the passed function N times.

def repeat_fun(times, f):
    for i in range(times): f()

If you want to make it even more flexible, you can even pass arguments to the function being repeated:

def repeat_fun(times, f, *args):
    for i in range(times): f(*args)

Usage:

>>> def do():
...   print 'Doing'
... 
>>> def say(s):
...   print s
... 
>>> repeat_fun(3, do)
Doing
Doing
Doing
>>> repeat_fun(4, say, 'Hello!')
Hello!
Hello!
Hello!
Hello!
link|improve this answer
feedback

A simple for loop?

for i in range(3):
  do()

Or, if you're interested in the results and want to collect them, with the bonus of being a 1 liner:

vals = [do() for _ in range(3)]
link|improve this answer
for-loop could also be 1 liner: for i in range(3): do() – julio.alegria Jan 28 at 19:46
@julio.alegria one liners are considered bad practice in Python - the style guides clearly recommend against it. – Lattyware Jan 28 at 19:53
@Lattyware I know that, I just wanted to show that a for-loop can also have the bonus of being a 1 liner – julio.alegria Jan 28 at 19:56
why are one-liners considered as bad practice? – alwbtc Jan 28 at 20:02
@alwbtc They are less clear to the reader - which is one of the primary considerations of python's style guidelines, along with being harder to add to later. See python.org/dev/peps/pep-0008 – Lattyware Jan 28 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.