Answers for "python pass argument to thread"

0

pass variable to thread target

from threading import Thread
from time import sleep
def run(name):
    for x in range(10):
        print("helo "+name)
        sleep(1)
def run1():
    for x in range(10):
        print("hi")
        sleep(1)
T=Thread(target=run,args=("Ayla",))
T1=Thread(target=run1)
T.start()
sleep(0.2)
T1.start()
T.join()
T1.join()
print("Bye")
Posted by: Guest on December-30-2020

Code answers related to "python pass argument to thread"

Python Answers by Framework

Browse Popular Code Answers by Language