Computer Science, asked by gokul3357, 11 months ago

in Python programming : what is pass statement?

Answers

Answered by Anonymous
6
The pass statement in python is used when a statement is required syntactically but you do not want any command or code to execute. The pass statement is a null operation nothing happens when it executes. The pass statement is helpful when you have created a code block but it is no longer required.

Anonymous: welcome
Answered by Anonymous
23
The pass statement in python is used when a statement is required syntactically but you do not want any command or code to execute. The pass statement is a null operation nothing happens when it executes. The pass statement is helpful when you have created a code block but it is no longer required.

I hope this will help you
Similar questions