Tag: iterables in python
Difference between iterables and iterators in Python
- Naveen
- 0
Iterables Iterators Iterators can be iterable because both iterator and iterable can be iterated using for loop but iterable objects can not be iterator because next() method is not supported by iterable objects. Popular Posts
Read More