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. -- https://mail.python.org/mailman3//lists/python-list.python.org
