pythonでどのようにcls.variable形式のインスタンスの属性にアクセスするには?Python:変数によるアクセスクラス属性
(ルビーで、それは形式のCLSにすることができ#{変数}。)
>>>cls.classname
u'CIM_RegisteredProfile'
>>>var='classname'
>>>cls.var
Traceback (most recent call last):
File "<console>", line 0, in <module>
AttributeError: 'CIMClass' object has no attribute 'var'
あなたが検索した場合は、これが求められていることがわかります。 –
[Python:変数を使用して属性にアクセスする]の複製が可能です(http://stackoverflow.com/questions/2157035/python-accessing-an-attribute-using-a-variable) –