Python Loop
Hello all, in this section of the tutorial we will see in depth about Python loops. The major Python loops are while loop and for loop. In this session we will be also seeing nested loops and use of continuous and break statement used in this loop. It is important to understand what this loop means? While Loop Will be seeing this with an example. Imagine a teacher wants to distribute chocolates from the jar among the students. she or he can distribute the chocolates one at a time and till all the chocolates from the jar has distributed. This means that as long as the condition of chocolates present in jar is true, he or she will distribute chocolates among the students. Algorithm Step 1: number of chocolates in the jar. step 2: while number of chocolates in the jar is greater than zero step 3: take the chocolate from the jar step 4: distribute the chocolate. step 5: go to step 2 Step 5: stop di...