Inside a loop body, what does continue do when Python reaches it?
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.