Infinite Iterators
Generators that never end
Interview Relevant: Streaming data
Infinite Iterators
Useful for data streams.
Code Examples
python
1from itertools import cycle
2colors = cycle(['red', 'green', 'blue'])
3# next(colors) loops through the list indefinitely