在Python 3中打印文档字符串

时间:2011-05-10 04:48:27

标签: python python-3.x docstring

如何在python 3.1.x中打印doc字符串?
我尝试使用re和sys模块作为测试,我不断收到错误。感谢

import re
print(re._doc_)
Traceback (most recent call last):
  File "<pyshell#91>", line 1, in <module>
    print(re._doc_)
AttributeError: 'module' object has no attribute '_doc_'

1 个答案:

答案 0 :(得分:4)

它被称为__doc__,而不是_doc_

import re
print(re.__doc__)

工作得很好。