gpt4 book ai didi

python - 在 Python 3 中打印文档字符串

转载 作者:太空宇宙 更新时间:2023-11-04 11:00:31 25 4
gpt4 key购买 nike

如何在 python 3.1.x 中打印文档字符串?
我尝试使用 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_'

最佳答案

它叫做__doc__,而不是_doc_

import re
print(re.__doc__)

工作得很好。

关于python - 在 Python 3 中打印文档字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5945289/

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