`
IvanLi
  • 浏览: 599710 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

python查看方法帮助(from dive into python)

阅读更多
def info(object, spanding=10, collapse=1):
    """Print methods doc string.
    
    Takes Module, class, list or string"""
    methodList = [method for method in dir(object) if callable(getattr(object,method))]
    processFunc = collapse and (lambda s: " ".join(s.split())) or (lambda s:s)
    print "\n".join(["%s %s" %(method.ljust(spanding),processFunc(str(getattr(object,method).__doc__))) for method in methodList])
    
if __name__ == "__main__":
    li="abc"
    import __builtin__
    info(__builtin__,20,2)
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics