1. What does the 'pass' statement do?
The pass statement is a placeholder that performs no action. It is used where syntactically a statement is required but no operation is needed yet. Developers often use it while writing skeleton code for functions, loops, or classes, to avoid syntax errors before logic is implemented.
def temp(): pass