while loops an break and continue statement

technical talkiess
0

 i=0

while(i<34):
    i = i+1
    if(i+1 < 5):
        continue
    if(i > 34):
        break
    i = i+1
    print(i)
Tags

Post a Comment

0Comments

Thanks you for commenting your questions. I will see question and respond you.

Post a Comment (0)