Step 1: Understand the concept of loop control statements in Python.
In Python, loop control statements are used to change the normal execution flow of loops.
These statements allow the program to either skip iterations, stop loops completely, or do nothing temporarily.
The common loop control statements in Python are:
break, continue, pass
Each of these performs a different function in loop execution.
Step 2: Analyze the options given in the question.
Option (1): pass
The pass statement does nothing. It is used as a placeholder when a statement is syntactically required but no action is needed. It does not skip loop iterations.
Option (2): break
The break statement terminates the loop completely and exits from the loop. It does not skip only the current iteration.
Option (3): continue
The continue statement skips the remaining statements of the current loop iteration and moves control directly to the next iteration of the loop. Therefore this option is correct.
Option (4): skip
Python has no keyword named skip. Hence this option is incorrect.
Step 3: Conclusion.
The keyword used to skip the current iteration of a loop in Python is
continue
Thus the correct answer is option (3).