Creating multiple processes using the multiprocessing module

Source: Internet
Author: User

1 #creating multiple processes using the multiprocessing module2 #The Multiprcessing module provides a process class to describe a processing object.3 #When you create a child process, you only need to pass in a parameter that executes functions and functions to complete the creation of a process instance4 #start the process with the start () method5 #use the Join () method to synchronize between processes.6 ImportOS7  fromMultiprocessingImportProcess8 #The Getpid () method in the OS module gets the ID of the current process9 #getppid () method gets the ID of the parent processTen #code to be executed by the child process One defRun_proc (name): A     Print('Child Process%s (%s) running .....'%(name, Os.getpid ())) -  - if __name__=='__main__': the     Print('Parent Process%s'%os.getpid ()) -      forIinchRange (5): -p = Process (Target=run_proc, args=(str (i),)) -         Print('process would start.') + P.start () - P.join () +     Print('process end.')

Creating multiple processes using the multiprocessing module

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.