Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Atm, I'm doing stuff like:

run_once = 0
while 1:
    if run_once == 0:
        myFunction()
        run_once = 1:

Which is getting tedious. I'm guessing there is some more accepted way of handling this stuff? I'm a noob, so hit me with the logic.

*more context: Sorry for the vagueness, and thanks for all the answers.

What I'm looking for is having a function excecute once, on demand. For example, at the press of a certain button. It is an interactive app which has a lot of user controlled switches. Having a junk variable for every switch, just for keeping track of whether it has been run or not, seemed kind of inefficient.

Now, how to notify you guys on an updated question?

share|improve this question
7  
If you have to run once, why don't you just call the function -> myFunction() once !!. Please take a look at your code, explain the intent better.! – pyfunc Nov 5 '10 at 5:28
3  
Why can't you leave it outside of the loop? More context please. – EightyEight Nov 5 '10 at 5:31

13 Answers

up vote 26 down vote accepted

I would use a decorator on the function to handle keeping track of how many times it runs.

def run_once(f):
    def wrapper(*args, **kwargs):
        if not wrapper.has_run:
            wrapper.has_run = True
            return f(*args, **kwargs)
    wrapper.has_run = False
    return wrapper


@run_once
def my_function(foo, bar):
    return foo+bar

Now my_function will only run once. Other calls to it will return None. Just add an else clause to the if if you want it to return something else. From your example, it doesn't need to return anything ever.

If you don't control the creation of the function, or the function needs to be used normally in other contexts, you can just apply the decorator manually as well.

action = run_once(my_function)
while 1:
    if predicate:
        action()

This will leave my_function available for other uses.

Finally, if you need to only run it once twice, then you can just do

action = run_once(my_function)
action() # run once the first time

action.has_run = False
action() # run once the second time
share|improve this answer
This seems like what I might be looking for, but I am uncertain of the syntax of what your using. What is the @ char for? – Marcus Ottosson Nov 5 '10 at 18:47
2  
@Marcus Ottosson The @ char makes it a decorator. A comment is too long to explain what that is. Here, have a link. At any rate, you might just want to use the second form that I presented instead where you apply it manually. You should probably still know what a decorator is. – aaronasterling Nov 5 '10 at 19:52
Cool, I'll look into that. Thanks – Marcus Ottosson Nov 6 '10 at 3:33
1  
Classic example of how to use a decorator. Nicely done! – jathanism Sep 29 '12 at 2:05

Run the function before the loop. Example:

myFunction()
while True:
    # all the other code being executed in your loop

This is the obvious solution. If there's more than meets the eye, the solution may be a bit more complicated.

share|improve this answer

I'm assuming this is an action that you want to be performed at most one time, if some conditions are met. Since you won't always perform the action, you can't do it unconditionally outside the loop. Something like lazily retrieving some data (and caching it) if you get a request, but not retrieving it otherwise.

def do_something():
    [x() for x in expensive_operations]
    global action
    action = lambda : None

action = do_something
while True:
    # some sort of complex logic...
    if foo:
        action()
share|improve this answer
@Ryan Ginstrom: Really!! – pyfunc Nov 5 '10 at 5:42
1  
This is assuming you'd want to (or could) change the logic of do_something() or myFunction() to suit this particular case. Maybe do_something/myFunction is called elsewhere in a different context. (Of course we won't know till poster clarifies.) – snapshoe Nov 5 '10 at 6:08
3  
This is overly convoluted. Neat trick though. My main gripe, and it is I believe a serious one, is that do_something needs to know that it's going to be aliased to action which seems to me to violate some sort of separation of concerns. I reiterate though, neat trick. – aaronasterling Nov 5 '10 at 7:42
2  
-1. This is messy and in larger code bases can hurt readability. Global variables, the name action, A function getting called every time (as opposed to the original question where it's called just once). – Noufal Ibrahim Nov 5 '10 at 9:11
1  
action();action = lambda:None achieves a similar result without the extra function – gnibbler Nov 7 '10 at 4:42
show 2 more comments

There are many ways to do what you want; however, do note that it is quite possible that —as described in the question— you don't have to call the function inside the loop.

If you insist in having the function call inside the loop, you can also do:

needs_to_run= expensive_function
while 1:
    …
    if needs_to_run: needs_to_run(); needs_to_run= None
    …
share|improve this answer
+1 I'm tempted to delete my answer but I've been doing a little too much of that recently. – aaronasterling Nov 5 '10 at 12:10
@aaron: you definitely shouldn't delete your answer, whatever the ratio of your deleted / remaining answers :) – tzot Nov 5 '10 at 13:30
explicit if needs_to_run is not None and proper formatting might be appropriate here. needs_to_run, run_once = None, needs_to_run; run_once() could protect from exceptions, make less likely multiple invocations in response to user keystrokes. – J.F. Sebastian Nov 6 '10 at 17:45

I've thought of another, very effective way to do this that doesn't require decorator function or classes. Instead it just uses a mutable keyword argument, which ought to work in most versions of Python. Most of the time these are something to be avoided since normally you wouldn't want a default argument value to be able to change from call-to-call -- but that ability can be leveraged and used as cheap storage mechanism. Here's how it would work:

def my_function1(_has_run=[]):
    if _has_run: return
    print "my_function1 doing stuff"
    _has_run.append(1)

def my_function2(_has_run=[]):
    if _has_run: return
    print "my_function2 doing some other stuff"
    _has_run.append(1)

for i in range(10):
    my_function1()
    my_function2()

my_function1(_has_run=[]) # force it to run

# output:
# my_function1 doing stuff
# my_function2 doing some other stuff
# my_function1 doing stuff

This could be simplified a little further by doing what @gnibbler suggested in his answer and using an iterator (which were introduced in Python 2.2.):

from itertools import count

def my_function3(_count=count()):
    if _count.next(): return
    print "my_function3 doing something"

for i in range(10):
    my_function3()

# my_function3 doing something
share|improve this answer
+1 for using mutable keyword arguments. – Faheem Mitha Mar 12 '12 at 6:47

Assuming there is some reason why myFunction() can't be called before the loop

from itertools import count
for i in count():
    if i==0:
        myFunction()
share|improve this answer
Very clever idea -- but it sounds like the OP wants something that is an aspect of the function and in effect for any call to it, rather than being externally controlled from one point like this. – martineau Nov 7 '10 at 0:08

Here's an answer that doesn't involve reassignment of functions, yet still prevents the need for that ugly "is first" check.

__missing__ is supported by Python 2.5 and above.

def do_once_varname1():
    print 'performing varname1'
    return 'only done once for varname1'
def do_once_varname2():
    print 'performing varname2'
    return 'only done once for varname2'

class cdict(dict):
    def __missing__(self,key):
        val=self['do_once_'+key]()
        self[key]=val
        return val

cache_dict=cdict(do_once_varname1=do_once_varname1,do_once_varname2=do_once_varname2)

if __name__=='__main__':
    print cache_dict['varname1'] # causes 2 prints
    print cache_dict['varname2'] # causes 2 prints
    print cache_dict['varname1'] # just 1 print
    print cache_dict['varname2'] # just 1 print

Output:

performing varname1
only done once for varname1
performing varname2
only done once for varname2
only done once for varname1
only done once for varname2
share|improve this answer

I'm not sure that I understood your problem, but I think you can divide loop. On the part of the function and the part without it and save the two loops.

share|improve this answer

Why is this any different from your code?

myFunction()
while 1:
    # rest of your code
    pass
share|improve this answer
Why does run_once even need to be there any more? – Rafe Kettler Nov 5 '10 at 5:31
@Rafe Kettler: In fact, I never intended to answer but you can't show code in the comments. I made a comment but I thought I might just ask him too. I am not sure if this was a question at all. – pyfunc Nov 5 '10 at 5:41
1  
we may never know. – Rafe Kettler Nov 5 '10 at 5:43
Sorry for the confusion, I can see how this might seem an appropriate solution. Please read the updated question for more information. – Marcus Ottosson Nov 5 '10 at 18:50

Here's an explicit way to code this up, where the state of which functions have been called is kept locally (so global state is avoided). I don't much like the non-explicit forms suggested in other answers: it's too surprising to see f() and for this not to mean that f() gets called.

This works by using dict.pop which looks up a key in a dict, removes the key from the dict, and takes a default value to use in case the key isn't found.

def do_nothing(*args, *kwargs):
    pass

# A list of all the functions you want to run just once.
actions = [
    my_function,
    other_function
]
actions = dict((action, action) for action in actions)

while True:
    if some_condition:
        actions.pop(my_function, do_nothing)()
    if some_other_condition:
        actions.pop(other_function, do_nothing)()
share|improve this answer

If I understand the updated question correctly, something like this should work

def function1():
    print "function1 called"

def function2():
    print "function2 called"

def function3():
    print "function3 called"

called_functions = set()
while True:
    n = raw_input("choose a function: 1,2 or 3 ")
    func = {"1": function1,
            "2": function2,
            "3": function3}.get(n)

    if func in called_functions:
        print "That function has already been called"
    else:
        called_functions.add(func)
        func()
share|improve this answer
That would stop the interactivity. See, this app monitors my tablet input and processes it through various expressions and basic math and finally outputs it on screen. I think that what I am looking for is not very unique in any way, cause all that I'm trying to do is, say, at the press of B, add 2 to whatever variable so that the equation changes. Or, alter the color of one of the bars representing some data on screen. I am starting to thing that there might not be another way of doing it than what I am currently doing though.. – Marcus Ottosson Nov 7 '10 at 4:31
So, to clarify, it needs to not only run Once and then never be able to run again. Just needs to do it's thing inside the loop, and then stop doing it. Like, add 2 to my equation, then continue doing whatever you were doing before, but with the new user inputted data. Easy stuff, I would think :) – Marcus Ottosson Nov 7 '10 at 4:35
@Marcus, I'm not suggesting that you should use raw_input(). It's just there so you can run this program and get an idea of how it works. Sounds to me that your app would work better with callbacks though – gnibbler Nov 7 '10 at 4:38

One object-oriented approach and make your function a class, aka as a "functor", whose instances automatically keep track of whether they've been run or not when each instance is created.

Since your updated question indicates you may need many of them, I've updated my answer to deal with that by using a class factory pattern. This is a bit unusual, and iy may have been down-voted for that reason (although we'll never know for sure because they never left a comment). It could also be done with a metaclass, but it's not much simpler.

def RunOnceFactory():
    class RunOnceBase(object): # abstract base class
        _shared_state = {} # shared state of all instances (borg pattern)
        has_run = False
        def __init__(self, *args, **kwargs):
            self.__dict__ = self._shared_state
            if not self.has_run:
                self.stuff_done_once(*args, **kwargs)
                self.has_run = True
    return RunOnceBase

if __name__ == '__main__':
    class MyFunction1(RunOnceFactory()):
        def stuff_done_once(self, *args, **kwargs):
            print("MyFunction1.stuff_done_once() called")

    class MyFunction2(RunOnceFactory()):
        def stuff_done_once(self, *args, **kwargs):
            print("MyFunction2.stuff_done_once() called")

    for _ in range(10):
        MyFunction1()  # will only call its stuff_done_once() method once
        MyFunction2()  # ditto

Output:

MyFunction1.stuff_done_once() called
MyFunction2.stuff_done_once() called

Note: You could make a function/class able to do stuff again by adding a reset() method to its subclass that reset the shared has_run attribute. It's also possible to pass regular and keyword arguments to the stuff_done_once() method when the functor is created and the method is called, if desired.

And, yes, it would be applicable given the information you added to your question.

share|improve this answer
This one seems pretty good too. Would you mind reading my updated question to see if it might be a good solution? – Marcus Ottosson Nov 5 '10 at 18:49
@MarcusOttosson: Sorry for the belated reply. If I understand the additional information in your updated question, then yes, I think it would work fine. – martineau Jan 31 at 2:43

If the condition check needs to happen only once you are in the loop, having a flag signaling that you have already run the function helps. In this case you used a counter, a boolean variable would work just as fine.

signal = False
count = 0 
def callme(): 
     print "I am being called"  
while count < 2: 
     if signal == False : 
         callme()
         signal = True
     count +=1
share|improve this answer
Isn't this exactly the same as what the OP is already doing? – Graeme Perrow Nov 5 '10 at 13:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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