I C# we do it through reflection. In Javascript it is simple as:
for(var propertyName in objectName)
var currentPropertyValue = objectName[propertyName];
How to do it in Python?
|
3
|
I C# we do it through reflection. In Javascript it is simple as:
How to do it in Python?
|
||
|
|
|
|
Be aware that in some rare cases there's a |
||||||||
|
|
|
See
|
||||||||||||
|
|
|
The __dict__ property of the object is a dictionary of all its other defined properties. Note that Python classes can override __getattr__ and make things that look like properties but are not in __dict__. There's also the builtin functions vars() and dir() which are different in subtle ways. And __slots__ can replace __dict__ in some unusual classes. Objects are complicated in Python. __dict__ is the right place to start for reflection-style programming. dir() is the place to start if you're hacking around in an interactive shell. |
||
|
|
|
|
|
|||
|
|