Answers for "name thread python"

1

how to change a thread name in python

#do this
import threading
threding.current_thread().name = "name_of_the_thread"
Posted by: Guest on August-23-2020
4

threading python

import threading
import time

def thread_function(name):
     print(f"Thread {name}: starting")
     time.sleep(2)
     print(f"Thread {name}: finishing")
 
my_thread = threading.Thread(target=thread_function, args=(1,))
my_thread.start()
time.sleep(1)
my_second_thread = threading.Thread(target=thread_function, args=(2,))
my_second_thread.start()
my_second_thread.join() # Wait until thread finishes to exit
Posted by: Guest on October-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language