【发布时间】:2014-10-21 12:15:03
【问题描述】:
基于这个问题 looping over all member variables of a class in python
关于如何迭代类的属性/非函数。我想遍历类变量值并存储在一个列表中。
class Baz:
a = 'foo'
b = 'bar'
c = 'foobar'
d = 'fubar'
e = 'fubaz'
def __init__(self):
members = [attr for attr in dir(self) if not attr.startswith("__")]
print members
baz = Baz()
将返回['a', 'b', 'c', 'd', 'e']
我想要列表中的类属性值。
【问题讨论】:
-
在推导式中使用
getattr。
标签: python class loops variables