如何获得帮助的字符串表示形式(str)

时间:2019-04-20 08:37:49

标签: python python-help

给出以下代码示例:

h = help(str)
print(h)
d = str.__doc__
print(d)

调用help时,程序停止执行,并显示交互式帮助模式。退出后,h包含Noned仅包含该类的文档字符串,而不包含方法的文档字符串(方法的文档字符串由help显示)。因此,我想将help(str)的所有内容存储在变量h中,该怎么办?

0 个答案:

没有答案