반복 가능한 클래스의 모든 변수 목록을 어떻게 얻습니까? locals ()와 비슷하지만 클래스
class Example(object):
bool143 = True
bool2 = True
blah = False
foo = True
foobar2000 = False
def as_list(self)
ret = []
for field in XXX:
if getattr(self, field):
ret.append(field)
return ",".join(ret)
이것은 반환되어야한다
>>> e = Example()
>>> e.as_list()
bool143, bool2, foo
답변
dir(obj)
객체의 모든 속성을 제공합니다. 메서드 등에서 멤버를 직접 필터링해야합니다.
class Example(object):
bool143 = True
bool2 = True
blah = False
foo = True
foobar2000 = False
example = Example()
members = [attr for attr in dir(example) if not callable(getattr(example, attr)) and not attr.startswith("__")]
print members
당신에게 줄 것입니다 :
['blah', 'bool143', 'bool2', 'foo', 'foobar2000']
답변
함수없이 변수 만 원하면 다음을 사용하십시오.
vars(your_object)
답변
@truppo : 귀하의 대답은 거의 정확하지만, callable은 문자열을 전달하기 때문에 항상 false를 반환합니다. 다음과 같은 것이 필요합니다.
[attr for attr in dir(obj()) if not callable(getattr(obj(),attr)) and not attr.startswith("__")]
함수를 필터링합니다.
답변
>>> a = Example()
>>> dir(a)
['__class__', '__delattr__', '__doc__', '__format__', '__getattribute__', '__hash__',
'__init__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__',
'__sizeof__', '__str__', '__subclasshook__', 'bool143', 'bool2', 'blah',
'foo', 'foobar2000', 'as_list']
— 보시다시피 모든 속성 을 제공 하므로 약간 필터링해야합니다. 하지만 기본적으로 dir()
당신이 찾고있는 것입니다.
답변
row2dict = lambda r: {c.name: str(getattr(r, c.name)) for c in r.__table__.columns} if r else {}
이것을 사용하십시오.
답변
class Employee:
'''
This class creates class employee with three attributes
and one function or method
'''
def __init__(self, first, last, salary):
self.first = first
self.last = last
self.salary = salary
def fullname(self):
fullname=self.first + ' ' + self.last
return fullname
emp1 = Employee('Abhijeet', 'Pandey', 20000)
emp2 = Employee('John', 'Smith', 50000)
print('To get attributes of an instance', set(dir(emp1))-set(dir(Employee))) # you can now loop over
답변
이 작업을 수행하는 쉬운 방법은 클래스의 모든 인스턴스를 list
.
a = Example()
b = Example()
all_examples = [ a, b ]
물체는 저절로 존재하지 않습니다. 프로그램의 일부에서 이유가 있습니다. 창조는 이유가 있습니다. 목록에 수집하는 것도 이유가 있습니다.
공장을 사용하면 할 수 있습니다.
class ExampleFactory( object ):
def __init__( self ):
self.all_examples= []
def __call__( self, *args, **kw ):
e = Example( *args, **kw )
self.all_examples.append( e )
return e
def all( self ):
return all_examples
makeExample= ExampleFactory()
a = makeExample()
b = makeExample()
for i in makeExample.all():
print i