Python iterables are objects that can be iterated or looped over. Examples of iterables in Python include lists and dictionaries. In PyTorch, a :class:`torch.utils.data.DataLoader` is also an iterable ...
An iterable is any Python object capable of returning its elements one at a time. Iterables are used as sources of data for iteration.