Informatics Practices

Which statement is used to iterate itself over a range of values or a sequence?

  1. if
  2. while
  3. do-while
  4. for

Python Control Flow

1 Like

Answer

for

Reason — The for loop statement is used to iterate/repeat itself over a range of values or a sequence.

Answered By

1 Like


Related Questions