Re: Question from a "java background" developer

2020-09-22 Thread David Lowry-Duda
On Tue, Sep 22, 2020 at 11:13:50AM +0200, Agnese Camellini wrote: > I mean do i have a keyword to obtain all the methods and the > attributes of > a class in python? In addition to the `dir()` that others have mentioned, I'll add that developing interactively is very common, especially in ipytho

Re: Question from a "java background" developer

2020-09-22 Thread Dieter Maurer
Chris Angelico wrote at 2020-9-22 19:25 +1000: >On Tue, Sep 22, 2020 at 7:15 PM Agnese Camellini > wrote: >> >> Hello to everyone, I have a question. I come from a Java background and I >> would like to develop in python but i'm wondering: is there anything, in >> python, like Java "reflection"? >>

Re: Question from a "java background" developer

2020-09-22 Thread Mats Wichmann
On 9/22/20 3:25 AM, Chris Angelico wrote: > On Tue, Sep 22, 2020 at 7:15 PM Agnese Camellini > wrote: >> >> Hello to everyone, I have a question. I come from a Java background and I >> would like to develop in python but i'm wondering: is there anything, in >> python, like Java "reflection"? >> I

Re: Question from a "java background" developer

2020-09-22 Thread Chris Angelico
On Tue, Sep 22, 2020 at 7:15 PM Agnese Camellini wrote: > > Hello to everyone, I have a question. I come from a Java background and I > would like to develop in python but i'm wondering: is there anything, in > python, like Java "reflection"? > I mean do i have a keyword to obtain all the methods

Question from a "java background" developer

2020-09-22 Thread Agnese Camellini
Hello to everyone, I have a question. I come from a Java background and I would like to develop in python but i'm wondering: is there anything, in python, like Java "reflection"? I mean do i have a keyword to obtain all the methods and the attributes of a class in python? Thanks to anyone that can