Introduction to For Loops in Python.
For Loops in Python are used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string).
Further we shall look on how to use enumerate method while dealing with an iterable in python.
An iterable is any Python object capable of returning its members one at a time, permitting it to be iterated over in a for loop.