in Python by (31.6k points)
What Are Python Iterators?

1 Answer

0 votes
by (23.9k points)

Iterators in Python are array-like objects which allow moving on the next element. We use them in traversing a loop, for example, in a “for” loop.

Python library has a no. of iterators. For example, a list is also an iterator and we can start a for loop over it.

Related questions

0 votes
asked Sep 21, 2021 in Python by sharadyadav1986 (31.6k points)
...