
Which Python keyword skips back to the beginning of a loop?
Answer Options:
- break
- continue

Which Python keyword skips back to the beginning of a loop?
Answer Options:
Correct Answer:
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.