Python: Create a new deque with three items and iterate over the deque's elements
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:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics