I have been using dict to format strings
s = '%(name1)s %(name2)s'
d = {}
d['name1'] = 'asdf'
d['name2'] = 'whatever'
result = s % d
I just realized that I can do this with a class and using the dict method instead:
s = '%(name1)s %(name2)s'
class D : pass
d = D()
d.name1 = 'asdf'
d.name2 = 'whatever'
result = s % d.__dict__
(obviously I do this for bigger strings, and many keys).
Is there any disadvantage to the class approach that I am overlooking? Or is there a better method of doing this string formatting that I am missing?
Thank you.