+ 1
Can anyone explain loops in python to me please?
3 Answers
0
There are 2 types of loops:
While & For
While loops arr used to repeat it's codeblock until it's condition gets false.
For loop are used to iterate through each item in an iterator, Such as list- or range object.
Both loops have another way to exit: break, you can place a break in a loop's code block and when ever it get's executed it breaks the loop.
0
Sorry I mean thanks
- 1
Thanls