Python Multi-process

Source: Internet
Author: User

1, Multi-threaded understanding

A thread is the smallest execution unit, and a process consists of at least one thread. Threads are characterized by the ability to share memory and variables between threads, with less resource consumption. How to schedule processes and threads is entirely up to the operating system, and the program itself cannot decide when to execute and how long it takes to execute.

2, Python multi-threaded creation

1  fromThreadingImportThread2 Import Time3 #1. If multiple threads are executing the same function, they will not affect each other.4 defTest ():5Time.sleep (1)6     Print("----drank too much last night and drank less next time---")7 8  forIinchRange (100):9t = Thread (target=test) # Create thread ObjectTenT.start () #执行线程

Python Multi-process

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.