Beginner
Python
Q36 / 101
What does the continue keyword do in a loop?
Correct! Well done.
Incorrect.
The correct answer is B) Jumps to the next iteration, skipping remaining code in the current iteration
B
Correct Answer
Jumps to the next iteration, skipping remaining code in the current iteration
Explanation
continue skips the rest of the loop body for the current iteration and proceeds to the next.
Progress
36/101