Basic Python Threading || Python

 

In this we are going to see a program on Basic Python Threading in Python Programming Language.


import threading as th
import time

def display():
    print("Message from thread ")


for i in range(5):
    t1 = th.Thread(target=display)
    t1.start()
    time.sleep(1)

# Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post