Problem Statement
What does the 'pass' statement do?
Explanation
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.
Code Solution
SolutionRead Only
def temp(): pass
