gpt4 book ai didi

Python:通过变量访问类属性

转载 作者:行者123 更新时间:2023-11-28 21:28:10 26 4
gpt4 key购买 nike

在 python 中如何以 cls.variable 格式访问实例的属性?

(在 ruby​​ 中,它可以是 cls.#{variable} 格式)

>>>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'

最佳答案

使用getattr :

var = 'classname'
getattr(cls, var)

关于Python:通过变量访问类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8889374/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com