用法:
operator.methodcaller(name, /, *args, **kwargs)
返回一个可调用对象,该对象在其操作数上调用方法
name
。如果提供了额外的参数和/或关键字参数,它们也将被提供给方法。例如:- 在
f = methodcaller('name')
之后,调用f(b)
返回b.name()
。 - 在
f = methodcaller('name', 'foo', bar=1)
之后,调用f(b)
返回b.name('foo', bar=1)
。
相当于:
def methodcaller(name, /, *args, **kwargs): def caller(obj): return getattr(obj, name)(*args, **kwargs) return caller
- 在
相关用法
- Python operator.truth()用法及代码示例
- Python operator.le()用法及代码示例
- Python operator.ge()用法及代码示例
- Python operator.eq()用法及代码示例
- Python operator.itemgetter用法及代码示例
- Python operator.not_()用法及代码示例
- Python operator.lt()用法及代码示例
- Python operator.attrgetter用法及代码示例
- Python operator.ne()用法及代码示例
- Python operator.gt()用法及代码示例
- Python open()用法及代码示例
- Python open用法及代码示例
- Python optparse.OptionParser.set_defaults用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.read()用法及代码示例
- Python os.DirEntry.inode()用法及代码示例
- Python os.closerange()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.pathconf()用法及代码示例
- Python os.chflags()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 operator.methodcaller。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。