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, 1227👍, 0💬
Popular Posts:
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How to use the "send-request" Policy statement to call an extra web service for an Azure API service...