Answers for "python import thread"

1

python install threading module

pip3 install thread6
Posted by: Guest on November-22-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
2

how to thread python

import threading, time

def worker():
    """thread worker function"""
    print('Worker')
    return

threads = []
for i in range(5):
    t = threading.Thread(target=worker)
    threads.append(t)
    t.start()
    print('Thread')
Posted by: Guest on March-07-2020
0

import thread

import thread

def eating():
  print('eating...')
  time.sleep(1)

def sleeping():
  print('sleeping...)
  time.sleep(5)
        
t1 = threading.Thread(target=eating)
t2 = threading.Thread(target=sleeping)

t1.start()
t2.start()
Posted by: Guest on October-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language