For Loop – Python Programming

We have already discussed the while loop in our previous article. In this article, we will be covering the for loop. The for loop is one of the most widely used loops in programming. As you begin writing real code, you will find that you will almost always use for loop instead of while loop. Let us now have a look at it.

Source: LXer – For Loop – Python Programming