What does While loop do?
It repeatedly executes the instructions inside the loop while a certain condition remains valid
What is the structure for a While statement?
While condition is true: do A
Write a syntax for a while loop
counter = 5
while counter>0:
print (“Counter=”, counter)
counter=counter-1