which statement enables the execution of a statement to repeat till the condition is true
Answers
Answered by
28
Answer:
Iteration.
Explanation:
Repeating identical or similar tasks without making errors is something that computers do well and people do poorly. Repeated execution of a set of statements is called iteration. Python has two statements for iteration – the for statement, which we met last chapter, and the while statement.
Similar questions