Day16- While Loop in Python
While loop:
With the while loop we can execute a set of statements as long as a condition is true. As soon as the condition becomes False, the interpreter (python) comes out of the while loop.
There are three important things in while loop:
counter
...
codingsplash.hashnode.dev4 min read