Quizzma Latest Questions

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

Anonymous

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

Answer Options:

  • break
  • continue



Related Questions

Leave an answer

Leave an answer

1 Answer

  1. 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.