Chapters
Python114 chapters

ReferenceKeywords

pass

Does nothing. A placeholder where a block is required.

Signature

pass

Returns

Nothing.

Example

Python
def later():
    pass

later()
print("no error")

Output

no error

See also