Iterable and Iterator in Python
Introduction
Iterable and Iterator are important concepts of Python. However, sometimes it could be confusing. This post will dive into these concepts and help you totally understand them.
Iterable VS Iterator
First of all, we should know that Iterable and Iterator are different. To be exact, Iterator is a subclass of Iterable. An…