Markdown Format | JSON API | MCP Server Tool
Help on class staticmethod in builtins: builtins.staticmethod = class staticmethod(object) | staticmethod(function) -> method | | Convert a function to be a static method. | | A static method does not receive an implicit first argument. | To declare a static method, use this idiom: | | class C: | @staticmethod | def f(arg1, arg2, ...): | ... | | It can be called either on the class (e.g. C.f()) or on an instance | (e.g. C().f()). Both the class and the instance are ignored, and | neither is passed implicitly as the first argument to the method. | | Static methods in Python are similar to those found in Java or C++. | For a more advanced concept, see the classmethod builtin. | | Methods defined here: | | __call__(self, /, *args, **kwargs) | Call self as a function. | | __get__(self, instance, owner=None, /) | Return an attribute of instance, which is of type owner. | | __init__(self, /, *args, **kwargs) | Initialize self. See help(type(self)) for accurate signature. | | __repr__(self, /) | Return repr(self). | | ---------------------------------------------------------------------- | Static methods defined here: | | __new__(*args, **kwargs) from builtins.type | Create and return a new object. See help(type) for accurate signature. | | ---------------------------------------------------------------------- | Data descriptors defined here: | | __dict__ | | __func__ | | __isabstractmethod__ | | __wrapped__
Generated by phpMan Author: Che Dong Under GNU General Public License
2026-06-02 08:49 @216.73.216.198 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)