小编典典

从函数中获取文档字符串

all

我有以下功能:

def my_func():
    """My docstring is both funny and informative"""
    pass

如何访问文档字符串?


阅读 60

收藏
2022-06-08

共1个答案

小编典典

交互式地,您可以使用

help(my_func)

或者从代码中你可以检索它

my_func.__doc__
2022-06-08