For loop is another looping concept. It is used to run a block of code multiple number of times. The Python for statement iterates over the sequence of elements in the given order, along with executing the block of code each time. The sequence can be list, tuple, Dictionary, etc...
#Python
#Python3
#ForLoop
#For