Computer Science, asked by asthamkumar3715, 9 months ago

What do you mean by ""pass statement"" ?

Answers

Answered by myrakincsem
1

Pass statement is a null operation

Explanation:

While writing a program in python or any other programming language. There are certain sentences that are part of the program but does not required any operation.

These sentences are written for the better understanding of program code. Sometimes they get printed as it is in the code, sometimes don't.

These sort of statement are called "pass statements".

These are also known as null operations because they do not effect the program execution.

Similar questions