代码是这样的:
class Test:
a = 1
def __init__(self):
self.b=2
当我创建一个实例时Test
,我可以像这样访问它的实例变量b
(使用字符串“b”):
test = Test()
a_string = "b"
print test.__dict__[a_string]
但它不适用于a
不self.__dict__
包含名为 的键a
。a
那么如果我只有一个字符串,我该如何访问a
?
谢谢!