×

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 Thread Class Methods

Python Thread Class has the following built-in functions.

Method Description
getName() Returns the name of the thread.
is_alive() Checks whether that thread is alive or not.
join() Blocks the calling thread till the time the thread whose join() method is called terminates, either normally or through an unhandled exception.
run() Represent a thread's activity.
setName() Sets the name of the thread.
start() Starts a thread's activity.
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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