Python的help()函数没有打印出我的描述性DocStrings [关闭]

问题描述 投票:0回答:1

[您好,我正在使用Python 3处理Sublime Text,并制作了一个类。我在方法和类标题下用文档字符串注释它,但是当我尝试使用内置的help()函数时,它不会打印出我的描述。我不知道我在做什么错。 (请注意,即使使用双引号,也无法使用。)>

enter image description here

编辑,实际代码:

class testDocString:
   '''print my annotation'''
   def __init__(self):
      '''please work'''
      pass

help(testDocString)

[您好,我正在使用Python 3处理Sublime Text,并制作了一个类。我在方法和类标题下使用docstrings对其进行注释,但是当我尝试使用内置的help()函数时,它会...

python docstring
1个回答
0
投票

我发现这非常有趣,尽管我对帮助功能了解不多。我想帮助您进一步研究以找到您的解决方案。

© www.soinside.com 2019 - 2024. All rights reserved.