gpt4 book ai didi

python - 如何打印类属性/元素的文档字符串?

转载 作者:行者123 更新时间:2023-12-05 00:09:49 27 4
gpt4 key购买 nike

我有一个类:

class Holiday(ActivitiesBaseClass):
"""Holiday is an activity that involves taking time off work"""

Hotel = models.CharField(max_length=255)
""" Name of hotel """

我可以通过键入以下内容来打印类文档字符串:
print(Holiday.__doc__)

这输出为:
Holiday is an activity that involves taking time off work 

如何打印属于 Class 属性/元素的 Hotel 的文档字符串?

我试过的
print(Holiday.Hotel.__doc__)

返回:
A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.


我也试过 help()功能无济于事。

备注

Sphinx 似乎能够提取类属性的文档字符串并将它们包含在 readthedocs 中,所以我希望有一种方法

最佳答案

不要认为可以为特定字段添加文档字符串,但您可以使用字段的 help_text 取而代之的论点:

Hotel = models.CharField(max_length=255, help_text="Name of hotel")

关于python - 如何打印类属性/元素的文档字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59880963/

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