QuestenaPractice that shows what to review next
Question 65

Inside a loop body, what does continue do when Python reaches it?

  1. It skips the rest of this pass and advances.Correct answer
  2. It exits the innermost loop.
  3. It restarts this same pass from the top.
  4. It exits every enclosing loop.

Explanation

Continue abandons the remaining statements for the current pass and advances the innermost loop toward its next pass. It does not exit the loop, and it does not restart the same pass from the body's first line.

Continue with this test

Start practice
Question 65: Inside a loop body, what does continue do when Python… · Python Fundamentals · Questena