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

AI Tutor

Ask about the topic

Sign in Required

Please sign in to use the AI tutor

Sign In