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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/collections/python-collections-exercise-3.php