Chapter Loop in Python Answers
Chapter Loop in Python Answers
Question - Answers
Answer 1. The statements that are used to repeat a set of instructions are called iterative or looping
statements.
Answer 5: The while statement executes a set of statements repeatedly, until the logical expression
evaluates to true. When the condition becomes false, the control comes out of the loop. The syntax of
6. The break is a keyword in Python which is used for bringing the program control out of the loop