from dict to member vars...?
George Yoshida
ml at dynkin.com
Thu Oct 14 14:37:36 EDT 2004
More information about the Python-list mailing list
Thu Oct 14 14:37:36 EDT 2004
- Previous message (by thread): from dict to member vars...?
- Next message (by thread): from dict to member vars...?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Christopher J. Bottaro wrote: > Lets say I have a class instance with the following member vars: var1, x, > size. Now lets say I have dict with the following keys: var1, x, size. > Is there an easy way to *automatically* assign all the values in the dict > to corresponding (member) vars of the same name as the dict keys? > > Thanks for the help. > If class is a new style class, you can do it this way: instance.__dict__.update(some_dictionary) -- george
- Previous message (by thread): from dict to member vars...?
- Next message (by thread): from dict to member vars...?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list