Answers for "how to wait until in python"

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
3

wait for input python

input("You can't see the next text. (press enter)")
# input() waits for a user input
print("Now you can!")
Posted by: Guest on March-23-2020
4

making a function wait in python

from time import sleep

>>> sleep(4)
Posted by: Guest on September-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language