w3resource

Python Exercise: 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:

from collections import deque
dq = deque('aeiou')
for element in dq:
   print(element)

Sample Output:

a
e
i
o
u

Flowchart:

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

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

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 Python skills with w3resource's quiz


Python: Tips of the Day

Takes any number of iterable objects or objects with a length property and returns the longest one. If multiple objects have the same length, the first one will be returned

Example:

def tips_longest(*args):
  return max(args, key=len)

print(tips_longest('this', 'is', 'a', 'Python', 'Tutorial'))
print(tips_longest([1, 2, 3], [1, 2, 3, 4, 5], [1, 2]))
print(tips_longest([1, 2, 3], 'python'))

Output:

Tutorial
[1, 2, 3, 4, 5]
python