Answers for "python wait for a function to finish"

3

python wait until

import time
def waitUntil(condition, output): #defines function
    wU = True
    while wU == True:
        if condition: #checks the condition
            output
            wU = False
        time.sleep(60) #waits 60s for preformance

waitUntil(Cookies >= 0, eatCookies()) #runs function (output MUST be another function)
Posted by: Guest on November-19-2020

Code answers related to "python wait for a function to finish"

Python Answers by Framework

Browse Popular Code Answers by Language