Pythonでの動的な属性アクセス方法 getattr関数を使用する方法:obj = SomeObject() attribute_name = "name" value = getattr(obj, attribute_name)>>More