Day 4: Loops in Python
Loops are used to repeat instructions
while loops
for loops
While loop
The while loop is a control flow statement that allows you to execute a block of code repeatedly as long as a given condition is True. It is particularly useful when the numbe...