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, 1495🔥, 0💬
Popular Posts:
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...