Mention the learning outcomes from While loop and Do while loop
Answers
Answered by
0
Answer:
no do not available loop
Answered by
0
Answer:
while loop will help you to print a statement or whatever you want till the condition is false and once the condition is true , the while loop will stop .
you will be able to pribt from 1 to 10 or 1 to 1000000000 or whatever you want ,you can also print statements in while loop.
But people prefer to use for loop instead of using a while loop.
Do while is also similar to while loop . it will do something for you whatever you tell it till the condition is false and once the condition is true it will stop.
You can print from 1 to unlimited until the condition is false.You can just print it in 3 lines of code in Python .
Similar questions