Answers for "while or loop"

4

while loop

h=0
m=7
while a<7:
    for m in range(7):
        h+=1
        m-=1
        print(a,b)
        if m==1 or h==1:
         break
Posted by: Guest on November-29-2021
2

while loop

While(condition is true) {

// Code                                         // The block keeps executing as long as the condition is true

// Code

}
Posted by: Guest on August-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language