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. Printing numbers up to 10 We are going to solve the same old problem, let us see how for loop can be used to print numbers from 1 to 10. You know the drill, re-cre