Re: Get Class properties

2011-12-29 Thread Emeka
Chris, Thanks a million! Regards, Emeka On Thu, Dec 29, 2011 at 1:27 AM, Chris Angelico wrote: > On Wed, Dec 28, 2011 at 11:13 PM, Emeka wrote: > > Hello All, > > > > I have seen what I am looking for.. __dict__. > > > > Yep! You may also want to look at the dir() function. > > Chris Angelico

Re: Get Class properties

2011-12-28 Thread Chris Angelico
On Wed, Dec 28, 2011 at 11:13 PM, Emeka wrote: > Hello All, > > I have seen what I am looking for.. __dict__. > Yep! You may also want to look at the dir() function. Chris Angelico -- http://mail.python.org/mailman/listinfo/python-list

Get Class properties

2011-12-28 Thread Emeka
Hello All, Say I have a class like below class Town: state = StateClass() cities = CityClass() Is there way to introspect such that one can list the properties keys and their values in such a way that it would look like playing around dictionary ? Regards, Janus -- *Satajanus Nig

Re: Get Class properties

2011-12-28 Thread Emeka
Hello All, I have seen what I am looking for.. __dict__. Thanks! Regards, Janus On Wed, Dec 28, 2011 at 1:05 PM, Emeka wrote: > > Hello All, > > Say I have a class like below > > class Town: > state = StateClass() > cities = CityClass() > > > Is there way to introspect such that