Computer Science, asked by Student291209, 3 months ago

6) Statements inside the loop that are to be executed repeatedly
are called
of the loop.​

Answers

Answered by dipanudha
3

The group of statements being executed repeatedly is called a loop. There are two loop statements in Python

Answered by Anonymous
1

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions