Queue for Python

Source: Internet
Author: User

ImportQueueq=queue.queue (maxsize=3)#Initialize the queue object to set the maximum queue spaceQ.put (1)#put the first element "1" in .Q.put (2)#put the second element "2" in.Q.put (2)#put the third element "2" in, notice that this is not the same element as "2" .Q.put (block=true,timeout=2)#to the last put,#when setting block=false, don't get stuck when put is not in.Q.get ()#take out the first element that goes inQ.get ()#take out the second element that goes in.Q.get ()#take out the third element that goes in.Q.get (block=true,timeout=2)#The first three have all been taken out, this time the queue is empty, set block=false, do not get stuck

Queue for Python

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.