gpt4 book ai didi

python - 数据的文档字符串?

转载 作者:IT老高 更新时间:2023-10-28 20:45:45 26 4
gpt4 key购买 nike

有没有办法以类似于文档字符串描述模块或函数的方式来描述模块的数据?

class MyClass(object):
def my_function():
"""This docstring works!"""
return True
my_list = []
"""This docstring does not work!"""

最佳答案

据我所知,无法将文档字符串分配给模块数据成员。

PEP 224建议使用此功能,但 PEP 被拒绝。

我建议您在模块的文档字符串中记录模块的数据成员:

# module.py:
"""About the module.

module.data: contains the word "spam"

"""

data = "spam"

关于python - 数据的文档字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/197387/

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