Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Run multiple functions at the same time

import threading
import time

def a():
    print("Function a is running at time: " + str(int(time.time())) + " seconds.")

def b():
    print("Function b is running at time: " + str(int(time.time())) + " seconds.")

threading.Thread(target=a).start()
threading.Thread(target=b).start()
 
PREVIOUS NEXT
Tagged: #Run #multiple #functions #time
ADD COMMENT
Topic
Name
2+6 =