×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Python program to create and delete threads using sleep method

Here, we will create a Python program to create and delete threads using sleep method.
Submitted by Shivang Yadav, on March 16, 2021

We need to import two libraries: threading and time,

  • threading for creating and deleting threads.
  • time for implementing time-based functions.

Program to create and delete threads using sleep method

import threading
import time

class ServiceProvider(threading.Thread):
    def run(self):
      while True:
        print("Service Provider....")
        time.sleep(1)

print("IN MAIN PROGRAM")
S=ServiceProvider()
S.setDaemon(True)
S.start()
time.sleep(5)
print("END OF MAIN PROGRAM")

Output:

IN MAIN PROGRAM
Service Provider....
Service Provider....
Service Provider....
Service Provider....
Service Provider....
Service Provider....
END OF MAIN PROGRAM

Python Threading Programs »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.