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

2026-03-09 Thread Thomas Passin
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

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

2026-03-09 Thread John Bokma
On 09/03/2026 17:27, 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

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

2026-03-09 Thread Chris Green
Lawrence D’Oliveiro wrote: > On Mon, 9 Mar 2026 16:27:02 +, 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. > > The “help()” funct

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

2026-03-09 Thread Chris Green
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.