我有以下功能:
def my_func():
    """My docstring is both funny and informative"""
    pass
如何访问docstring?
我发现help()最近内置的内容为模块,函数,方法,类等打印了一些信息.但它究竟在哪里找到它显示的信息?Python文档没有给出一个关于此的提示.
>>> import base64
>>> help(base64)
Help on module base64:
NAME
    base64 - RFC 3548: Base16, Base32, Base64 Data Encodings
FILE
    /usr/lib/python2.7/base64.py
..