are used in programming languages to repeat a group of statements several times
Answers
Answered by
7
The group of statements being executed repeatedly is called a loop. There are two loop statements in Python: for and while .
Answered by
3
Repetition statements fall into two general categories; while loops and for loops. Although it is possible to write every loop as a while loop (or every loop as a for loop), this is not a good idea. While loops should be used if the number of repetitions is not fixed.
please like
Similar questions