Control Flow Statements in Python: Fill in the Blanks
- In Python, the keyword used to check multiple conditions sequentially is ____.
- The ____ statement exits a loop prematurely.
- A loop that continues indefinitely is called an ____ loop.
- The ____ statement skips the current iteration and moves to the next one.
- In Python, control flow relies on proper ____ instead of braces.
- The ____ statement acts as a placeholder for future code.
- The keyword used to create decision-making statements in Python is ____.
- The loop condition is checked at the ____ of the while loop.
- The ____ clause in a loop executes only if no break statement is encountered.
- In Python, a for loop can iterate over any ____ object.
Answer Key (Fill in the Blanks):