我有以下功能:
def my_func(): """My docstring is both funny and informative""" pass
如何访问文档字符串?
交互式地,您可以使用
help(my_func)
或者从代码中你可以检索它
my_func.__doc__