python - 遍历python中的对象属性

标签 python oop attributes iteration

我有一个带有多个属性和方法的 python 对象。我想迭代对象属性。

class my_python_obj(object):
    attr1='a'
    attr2='b'
    attr3='c'

    def method1(self, etc, etc):
        #Statements

我想生成一个包含所有对象属性及其当前值的字典,但我想以动态方式进行(所以如果以后我添加另一个属性,我不必记得将我的函数更新为好)。

在 php 中的变量可以用作键,但在 python 中的对象是 Not Acceptable ,如果我为此使用点表示法,它会创建一个带有我的 var 名称的新属性,这不是我的意图。

只是为了让事情更清楚:

def to_dict(self):
    '''this is what I already have'''
    d={}
    d["attr1"]= self.attr1
    d["attr2"]= self.attr2
    d["attr3"]= self.attr3
    return d

·

def to_dict(self):
    '''this is what I want to do'''
    d={}
    for v in my_python_obj.attributes:
        d[v] = self.v
    return d

更新: 属性是指这个对象的变量,而不是方法。

最佳答案

假设你有一个类如

>>> class Cls(object):
...     foo = 1
...     bar = 'hello'
...     def func(self):
...         return 'call me'
...
>>> obj = Cls()

在对象上调用 dir 会返回该对象的所有属性,包括 python 特殊属性。虽然有些对象属性是可调用的,比如方法。

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

或者如果您更喜欢 map /过滤器。

>>> filter(lambda a: not a.startswith('__'), dir(obj))
['bar', 'foo', 'func']

如果要过滤掉方法,可以使用内置的callable作为检查。

>>> [a for a in dir(obj) if not a.startswith('__') and not callable(getattr(obj, a))]
['bar', 'foo']

您还可以使用检查您的类与其实例对象之间的差异。

>>> set(dir(Cls)) - set(dir(object))
set(['__module__', 'bar', 'func', '__dict__', 'foo', '__weakref__'])

关于python - 遍历python中的对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11637293/

相关文章:

python - 为什么 python lambda 看到的是一个序列而不是一个值?

错误识别的 Python 版本

python - Pandas 数据框 groupby 出现在两列中的文本值

java - 这种在 Java 中创建对象的方法是否比这更好?

python - 向多个设备 token 发送推送通知的 PyAPNs 不起作用

c++ - 从 C 到 C++

c# - 为什么 .NET System.IO.File 使用 Create/Open 而不是构造函数?

Xpath 仅选择属性的一部分

javascript - 获取存储在数组中的动态 div 中动态链接的所有 href 属性

python - Python 中 int 实例的 int 值存储在哪里?