Computer Science, asked by manavvd7231, 1 year ago

What are looping iteration statements in python with program?

Answers

Answered by giannopoylos2
0

Is a process in which it will run indefinitely until its treaty is in force

That's the While rule


while (conditions "opersions like < , <= , >= ,== , !=" conditions)

is look like

while(x != y ):

  y  = x

 x = x +1

Answered by s8528054954
0

Answer:

An iteration statement, or loop, repeatedly executes a statement, known as the loop body, until the controlling expression is false (0). The control expression must have a scalar type.

The while statement evaluates the control expression before executing the loop body (see Section 7.6.1).

The do statement evaluates the control expression after executing the loop body; at least one execution of the loop body is guaranteed (see Section 7.6.2).

The for statement executes the loop body based on the evaluation of the second of three expressions (see Section 7.6.3).

Similar questions