belongs to collection: Python Threading Programs
Multithreading is executing multiple threads concurrently by the processor.
In programming, a process can have two or more threads.
Here, we will see a program to create multiple threads in python
Python program to show the working of multithreading
import threading def ProcessOne(): while(True): print("Process One") def ProcessTwo(): while(True): print("Process Two") T1=threading.Thread(target=ProcessOne) T2=threading.Thread(target=ProcessTwo) T1.start() T2.start()
Output:
Process One Process Two ... ...
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Python program to show the working of multithreading
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer