+ 1
What is loop explain me
3 Answers
+ 14
//name itself tells what it'll do
https://www.sololearn.com/learn/2755/?ref=app
https://www.sololearn.com/learn/2670/?ref=app
https://www.sololearn.com/learn/2453/?ref=app
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2435/?ref=app
https://www.sololearn.com/learn/Python/2281/?ref=app
https://www.sololearn.com/Discuss/1045631/?ref=app
+ 3
If you go to school or have been going to school, you have repeated going to school until you finished/ graduated.
While(!graduated) {
learn(..... );
test(......);
if(tests === true) {
graduate= true;
}
}
+ 2
A loop is something that repeats itself again and again, till a condition becomes false.
I hope it helped you.