w3resource

Python: Create a new deque with three items and iterate over the deque's elements

Python Collections: Exercise-3 with Solution

Write a Python program to create a new deque with three items and iterate over the deque's elements.

Sample Solution:

Python Code:

# Import the deque class from the collections module
from collections import deque

# Create a deque 'dq' containing the characters 'a', 'e', 'i', 'o', and 'u'
dq = deque('aeiou')

# Iterate over the elements in the deque 'dq' and print each element
for element in dq:
   print(element) 

Sample Output:

a
e
i
o
u

Flowchart:

Flowchart - Python Collections: Create a new deque with three items and iterate over the deque's elements.

Python Code Editor:

Previous: Write a Python program to find the most common elements and their counts of a specified text.
Next: Write a Python program to find the occurrences of 10 most common words in a given text.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.