Answers for "python make a new thread with different parameters"

2

thread with args python

dRecieved = connFile.readline()
processThread = threading.Thread(target=processLine, args=(dRecieved,))  # <- note extra ','
processThread.start()
Posted by: Guest on November-25-2020
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 make a new thread with different parameters"

Python Answers by Framework

Browse Popular Code Answers by Language