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 in 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 :: Print the norm of a vector and a matrix using numpy. 
Python :: FileExistsError: [Errno 17] File exists: 
Python :: adjust size of plot 
Python :: python palindrome string 
Python :: request.body django 
Python :: read excel file spyder 
Python :: dataframe, sort by columns 
Python :: python open a+ 
Python :: python close browser 
Python :: printing python dictionary values 
Python :: python font family list 
Python :: list of df to df 
Python :: where to import kivy builder 
Python :: pandas create new column and fill with constant value 
Python :: clear cookies selenium python 
Python :: convert keys to values in python 
Python :: how to do an if input = python 
Python :: generic python 
Python :: how to print a string by reverse way in python 
Python :: pandas string to number 
Python :: pandas rename multiple columns 
Python :: python largest value in list 
Python :: python match phone number 
Python :: simple http server python 
Python :: python transpose list of lists 
Python :: remove rows from pandas dataframe that have text 
Python :: how to add a cooment in python 
Python :: python kill process by name 
Python :: how to count unique values in a column dataframe in python 
Python :: python sqlite insert 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =