python在中,如何给自己编写的库添加help
发布网友
发布时间:2022-04-22 13:05
我来回答
共1个回答
热心网友
时间:2023-11-05 16:56
使用mole, class, method 的 docstring. help会自动识别这些docstring。
比如:
#!/usr/bin/env python2
# coding=utf-8
"""This is mole help.
"""
class C1(object):
"""class's help string.
"""
def __init__(self, a):
"""method's help string.
"""
pass
def f1():
"""this is f1's help string.
"""
pass
然后你可以import这个模块之后,使用 help(f1) 等查看docstring.