ReferenceKeywords
pass
Does nothing. A placeholder where a block is required.
Signature
passReturns
Nothing.
Example
Python
def later():
pass
later()
print("no error")Output
no error
Basics
Strings
Collections
Functions
Classes and objects
Modules and the standard library
Files and errors
Beyond the basics
ReferenceKeywords
Does nothing. A placeholder where a block is required.
passNothing.
def later():
pass
later()
print("no error")Output
no error