0 votes
in Python by
What Are Python Iterators?

1 Answer

0 votes
by

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
0 votes
asked Oct 11, 2021 in Python by rajeshsharma
...