In Javascript it would be:
var newObject = { 'propertyName' : 'propertyValue' };
How to do it in Python?
|
1
|
In Javascript it would be:
How to do it in Python?
|
||||||||||||||
|
|
|
there are two kinds of |
||||||||||||||||||||
|
|
|
It is easy in Python to declare a class with an I explained it here (my highest-rated answer to date) so I won't retype the explanation. But, if you have questions, ask and I'll answer. If you just want a generic object whose class doesn't really matter, you can do this:
An obvious extension would be to add an This trick is nice sometimes when you want a more-convenient dictionary. I find it easier to type |
||
|
|
|
|
|
||
|
|
|
Peter's answer
|
||
|
|
|
|
I like Smashery's idea, but Python seems content to let you modify classes on your own:
Works just fine in Python 2.5 for me. Note that you do have to do this to a class derived from |
||||||||||||||
|
|
|
I don't know if there's a built-in way to do it, but you can always define a class like this:
|
|||
|