Looping in Python is same as that in other Programming languages like C, Java.
Looping refers to the process in which a set of statements is executed repeatedly until and unless a required condition is fulfilled. In the absence of condition, loop may run infinite times.
Python provide us the utility to implement looping in our program via two ways :
1. While loop
2. For loop
Python does not have the concept of do-while loop.
Why Python does not supports do-while loop ?
Because you simple don’t need that. https://stackoverflow.com/questions/37281553/why-there-is-no-do-while-loop-in-python#:~:text=There%20is%20no%20do…,syntax%20have%20never%20reached%20agreement.
In the upcoming lessons, we will study both loops in detail.
That’s all, see you in the next lecture.
