Tools, FAQ, Tutorials:
'pass' - Do Nothing Statements
How to use the "pass" statement in Python code?
✍: FYIcenter.com
The "pass" statement can be used as a place holder statement any where in Python code.
When a "pass" statement is interpreted, Python will do nothing and continue with next statement.
For example, the following Python code shows an empty function with a "pass" statement:
>>> def doNothing(): ... pass ... >>> doNothing()
⇒ Defining Functions in Python
⇐ 'continue' Statement in Repeating Statement Blocks
2017-09-12, 1570🔥, 0💬
Popular Posts:
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...