“iterować atrybuty klas Python” Kod odpowiedzi

Python iteruje pola obiektowe

>>> dir(obj)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'bar', 'foo', 'func']

>>> [a for a in dir(obj) if not a.startswith('__')]
['bar', 'foo', 'func']
Nutty Narwhal

iterować atrybuty klas Python

L = [[getattr(self, attr), attr] for attr in dir(self) if not attr.startswith("__")]
Friendly Frog

Odpowiedzi podobne do “iterować atrybuty klas Python”

Pytania podobne do “iterować atrybuty klas Python”

Więcej pokrewnych odpowiedzi na “iterować atrybuty klas Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu