I am using the multiprocessing module for the first time in Python. But in the very first program, I got the printing error (output is blank basically). I am working in Jupyter Notebook (Python 3.7.6). Here I am attaching my code:
from multiprocessing import Process
def display(my_name):
    print ('Hi !!!' + " " + my_name)
if __name__ == '__main__':
    p = Process(target=display, args=('Python',))
    p.start()
    p.join()
Thanks for the help in advance.
 
    