Re: I always forget how to access information about classes and methods - how to do it?

Thomas Passin <[email protected]> Mon, 9 Mar 2026 14:29:54 -0400
Newsgroups gmane.comp.python.general
Message-ID <[email protected]>
On 3/9/2026 12:27 PM, Chris Green wrote:
> I know one can access information about python3 classes and methods
> (e.g. list the methods in a class, show the parameters for a method,
> etc.) but I always forget how to do it.
> 
> Can someone enlighten me please, plus tell me where it is documented
> so that I can bookmark it and not need to ask again.

help(class_A) # lists methods, data, attributes, etc of class_A.