Use itertools.cycle
, that’s its exact purpose:
from itertools import cycle lst = ['a', 'b', 'c'] pool = cycle(lst) for item in pool: print item,
Output:
a b c a b c ...
(Loops forever, obviously)
In order to manually advance the iterator and pull values from it one by one, simply call next(pool)
:
>>> next(pool) 'a' >>> next(pool) 'b'
Related Posts:
- How to iterate through two lists in parallel?
- How can I reverse a list in Python?
- Difference between del, remove, and pop on lists
- How can I reverse a list in Python?
- What is the difference between Python’s list methods append and extend?
- Understanding slice notation
- Understanding slice notation
- What does the “yield” keyword do?
- How to convert list to string [duplicate]
- How do I get the number of elements in a list?
- Finding the index of an item in a list
- How to make a flat list out of a list of lists
- Removing duplicates in lists
- List changes unexpectedly after assignment. Why is this and how can I prevent it?
- TypeError: ‘float’ object is not subscriptable
- Is there a short contains function for lists?
- TypeError: ‘float’ object is not subscriptable
- Transpose/Unzip Function (inverse of zip)?
- appending list but error ‘NoneType’ object has no attribute ‘append’
- Check if something is (not) in a list in Python
- How to avoid “RuntimeError: dictionary changed size during iteration” error?
- Finding the average of a list
- Print a list in reverse order with range()?
- Get unique values from a list in python [duplicate]
- Why is it string.join(list) instead of list.join(string)?
- Why is it string.join(list) instead of list.join(string)?
- How do I concatenate two lists in Python?
- if else in a list comprehension
- Finding median of list in Python
- Python set to list
- Python List vs. Array – when to use?
- How to find all occurrences of an element in a list
- Finding and replacing elements in a list
- How to find all the indexes of a recurring item in a list?
- ValueError: max() arg is an empty sequence
- Remove list from list in Python
- How do I concatenate two lists in Python?
- Replace values in list using Python
- Append integer to beginning of list in Python
- List comprehension on a nested list?
- Union of two lists in Python
- Writing a list to a file with Python
- Python: Get the first character of the first string in a list?
- Understanding slice notation
- How do I find the duplicates in a list and create another list with them?
- ‘numpy.float64’ object is not iterable
- Add list to set?
- What’s the idiomatic syntax for prepending to a short python list?
- How to remove an element from a list by index
- Apply function to each element of a list
- Remove all occurrences of a value from a list?
- Converting Dictionary to List?
- How to deep copy a list?
- TypeError: list indices must be integers or slices, not str
- In Python, when to use a Dictionary, List or Set?
- Removing Punctuation From Python List Items
- Check if two unordered lists are equal
- ‘list’ object has no attribute ‘shape’
- How do I find the duplicates in a list and create another list with them?
- How can I compare two lists in python and return matches
- How do I check if a list is empty?
- How can I get list of values from dict?
- IndexError: list index out of range and python
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- How to sort a list of objects based on an attribute of the objects?
- AttributeError: ‘list’ object has no attribute ‘replace’ when trying to remove character
- How to append multiple values to a list in Python
- How do you split a list into evenly sized chunks?
- How to remove \n from a list element?
- How to return dictionary keys as a list in Python?
- How can I create an array/list of dictionaries in python?
- How to sort a list/tuple of lists/tuples by the element at a given index?
- Defining lists as global variables in Python
- Subtracting two lists in Python
- How to multiply all integers inside list
- Get the cartesian product of a series of lists?
- Python 2: AttributeError: ‘list’ object has no attribute ‘strip’
- What does the “x for x in” syntax mean?
- How to make a set of lists
- How to remove square brackets from list in Python?
- numpy-equivalent of list.pop?
- Difference between Python’s Generators and Iterators
- Create nice column output in python
- TypeError: only integer arrays with one element can be converted to an index 3
- Logical indexing with lists
- How does str(list) work?
- convert csv file to list of dictionaries
- Element-wise addition of 2 lists?
- How to split elements of a list?
- Find object in list that has attribute equal to some value (that meets any condition)
- Turn a single number into single digits Python
- How to create a list of objects?
- Iterating through list of list in Python
- Python cant convert ‘list’ object to str error [closed]
- Get difference between two lists
- How is Python’s List Implemented?
- Determine if 2 lists have the same elements, regardless of order? [duplicate]
- Building a list inside a list in python
- Sorting list based on values from another list
- Create a list with initial capacity in Python