Python Deque Module Use detailed _python

Source: Internet
Author: User

To create a deque sequence:

From collections import deque

d = deque ()

Deque provides a list-like approach to operations:

  D = deque ()
  d.append (' 1 ')
  d.append (' 2 ')
  d.append (' 3 ')
  len (d)
  d[0]
  d[-1]

Output results:

  3
  ' 1 '
  3 '

Pop is used on both ends:

  D = deque (' 12345 ')
  len (d)
  d.popleft ()
  d.pop ()
  D

Output results:

  5
  ' 1 '
  5 '
  deque ([' 2 ', ' 3 ', ' 4 '])

We can also limit the length of the deque:

D = deque (maxlen=30)

When the deque of the limit length increases the items that exceed the limit number, the other side of the item is automatically deleted:

  D = deque (maxlen=2)
  d.append (1)
  d.append (2)
  D
  d.append (3)
  D
  deque ([1, 2], maxlen=2)
  Deque ([2, 3], maxlen=2)

Add items in list to deque:

  D = deque ([1,2,3,4,5])
  d.extendleft ([0])
  d.extend ([6,7,8])
  D

Output results:

  Deque ([0, 1, 2, 3, 4, 5, 6, 7, 8])

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.