Answer:
from multiprocessing import Process def display(): print ('Hi !! I am Python') if __name__ == '__main__': p = Process(target=display) p.start() p.join() In this example, at first we import the Process class then initiate Process object with the display () function.
Step-by-step explanation: