在 Python 中从字符串访问类属性
使用类时,可能需要根据 a 的值动态访问属性字符串变量。考虑以下类:
<code class="python">class User: def __init__(self): self.data = [] self.other_data = [] def doSomething(self, source): # Task: access self.other_data if source is 'other_data'</code>
要基于字符串变量动态访问类属性,可以使用 getattr 函数。它的工作原理如下:
<code class="python">x = getattr(self, source)</code>
在您的示例中,如果源是“other_data”,则 getattr 将返回 self.other_data 的值。此方法适用于类的任何有效属性名称,包括您的情况下的 self.data 和 self.other_data 。
以上是如何在Python中使用字符串变量动态访问类属性?的详细内容。更多信息请关注PHP中文网其他相关文章!