Sample Use of api helper for list : Doc String : Development PYTHON examples


PYTHON examples » Development » Doc String »

 

Sample Use of api helper for list


Sample Use of api helper for list
 
def info(object, spacing=10, collapse=1):              
    """Print methods and doc strings. 

    Takes module, class, list, dictionary, or string.""" 
    methodList = [method for method in dir(objectif callable(getattr(object, 
method))] 
    processFunc = collapse and (lambda s: " ".join(s.split())) or (lambda s: s
    print "n".join(["%s %s" 
                      (method.ljust(spacing)
                       processFunc(str(getattr(object, method).__doc__))) 
                      for method in methodList]) 
li = [] 
info(li


           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Development
» Doc String