Python Tutorial - While Loop
In this blog, we are going to see the loop in the python programming language. There are two primitive loops in python. while for While loop: While loop will repeat the statement until the condition is true. While loop requires a relevant indexing variable. We will declare 'i' here. Which we will set the values as 1. Example: i=1 while i<6: print(i) i+=1 Output: 1 2 3 4 5 Explanation: ...