Question & Answer

Which Python keyword skips back to the beginning of a loop?

Which Python keyword skips back to the beginning of a loop?

Answer Options:

  • break
  • continue

1 Answer

Verified archive
Quizzma TeamNovember 18, 2024

Correct Answer:

  • continue

Explanation: The continue keyword is used in loops to skip the remaining code in the current iteration and jump back to the start of the loop for the next iteration. The break keyword, in contrast, terminates the loop entirely.