Johan Meskens CS3 jmcs3 wrote:
> hello
>    
> 
>>>>import random
>>>>print random.setstate.__doc__
> 
> Restore internal state from object returned by getstate().
> 
> 
> my question is
> " how can i loop through all the methods in a module 
>   and print out their '__doc__' content ?
> 
> 
>>>>for d in dir( random ):
> 
>       print random.???d???.__doc__
> 
> 
> thanks
> jmcs3

Untest no-brainer with "eval", there might be better solutions:


 >>> import random
 >>> for d in dir(random):
...  print eval('random.%s.__doc__' % d)

HTH,
Wolfram

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to