- 1
can anyone explain me For Loops and While Loops in simple term?
Python, for loops and while loops
2 Answers
+ 3
Hi! A recommendation is to start testing the different loop concepts untill you understand them, but:
âą use the for loop when the number of repetitions are known.
âą use the while loop oherwise; a condition is instead tested and will determine if the repetitions will continune.
âą understand the concept of iterators (for loop), and how to use break, continue and else together with the loop.
âą The courses on SoloLearn contains enough info to getting started.
0
Search on YouTube u will understood much better