gpt4 book ai didi

python - 有没有办法返回方法文档字符串?

转载 作者:行者123 更新时间:2023-12-01 01:51:31 29 4
gpt4 key购买 nike

由于 python3 中的 dir() 方法返回所有可用的可用方法,是否有任何方法可以将方法的文档(解释)作为字符串返回?

如果是字典的 pop() 方法,它应该返回以下内容:

class MutableMapping(Mapping[_KT, _VT], Generic[_KT, _VT])

@overload def pop Possible types:
• (self: MutableMapping, k: _KT) -> _VT

• (self: MutableMapping, k: _KT, default: Union[_VT, _T]) -> Union[_VT, _T]

External documentation:http://docs.python.org/3.6/library/

最佳答案

您可以使用 __doc__ 属性访问函数的文档字符串:

➜ python
Python 3.6.4 (default, May 23 2018, 17:30:17)
Type "help", "copyright", "credits" or "license" for more information.
>>> print(dict.pop.__doc__)
D.pop(k[,d]) -> v, remove specified key and return the corresponding value.
If key is not found, d is returned if given, otherwise KeyError is raised

关于python - 有没有办法返回方法文档字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50663920/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com