Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python deque

# deque -list-like container with fast appends and pops on either end
from collections import deque

queue = deque() # create deque
queue.append(2) # append right
queue.appenleft(1) # append left
queue.clear() # remove all elements --> len = 0
copy_queue = queue.copy() # create a shallow copy of the deque
queue.count(x) # count the number of deque elements equal to x
queue.extend([4, 5, 6]) # extend right by an iterable
queue.extendleft([1, 2, 3]) # extend left by an iterable

# More at: https://docs.python.org/3/library/collections.html#collections.deque

Comment

python dequeu

# Python code to demonstrate deque
     
   
from collections import deque
     
# Declaring deque
queue = deque(['name','age','DOB']) 
     
print(queue)
Comment

python deque

from collections import deque

arr = deque([1, 2])

# append left
arr.appendleft(1)

# append right
arr.append(3)

# count number of 1's in deque
print(arr.count(1))
# output 2

# added 3 new number to the left of deque
arr.extendleft([-1, -2, -3])
print(arr)
# output deque([-3, -2, -1, 1, 1, 2, 3])

# added 3 new number to the right of deque
arr.extend([4, 5, 6])
print(arr)
# output deque([-3, -2, -1, 1, 1, 2, 3, 4, 5, 6])

# insert 10 in the 3rd position
arr.insert(2, 10)
print(arr)
# output deque([-3, -2, 10, -1, 1, 1, 2, 3, 4, 5, 6])

# remove and return far right element
print(arr.pop())
# output 6

# remove and return far left element
print(arr.popleft())
# output -3

# reverse deque
arr.reverse()
print(arr)
# output deque([5, 4, 3, 2, 1, 1, -1, 10, -2])
Comment

deque python

# deque -list-like container with fast appends and pops on either end
from collections import deque

queue = deque() # create deque
queue.append(2) # append right
queue.appenleft(1) # append left
queue.clear() # remove all elements --> len = 0
copy_queue = queue.copy() # create a shallow copy of the deque
queue.count(x) # count the number of deque elements equal to x
queue.extend([4, 5, 6]) # extend right by an iterable
queue.extendleft([1, 2, 3]) # extend left by an iterable
Comment

PREVIOUS NEXT
Code Example
Python :: how to connect mongodb database with python 
Python :: Install Python2 and Python 3 
Python :: scikit learn 
Python :: bayesian model probability 
Python :: floor function in python 
Python :: oops python 
Python :: scapy python functions 
Python :: pycryptodome rsa encrypt 
Python :: python sort based on multiple keys 
Python :: python def example 
Python :: for loop in django template css 
Python :: what is thread in python 
Python :: manual merge sort 
Python :: site:*.instagram.com 
Python :: how to use inputs in python 
Python :: subtract constant from list 
Python :: tkinter hide legend 
Python :: How to append variable in Python 
Python :: python string: escaping characters 
Python :: pandas datafdrame pyplot 
Python :: list all items in digital ocean spaces 
Python :: python print over the same line 
Python :: how to get source code of website in python 
Python :: if statement in python with sets 
Python :: math is python 
Python :: Cannot seem to use import time and import datetime in same script in Python 
Python :: python code to open facebook and login with username and password 
Python :: table is not creating in django 
Python :: Summarize text using LED huggingface 
Python :: How to count a consecutive series of positive or negative values in a column in python 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =