method
A function which is defined inside a class body. If called as an attribute of an instance of that class, the method will get the instance object as its first argument (which is usually called self).
中文大概就是method相当于类函数,其第一个参数是self
这是官方文档里的。要多看文档啊