当前位置:首页 > 行业动态 > 正文

python如何打印对象的属性

在Python中,可以使用dir()函数和getattr()函数来打印对象的属性。dir()函数可以列出对象的所有属性和方法,getattr()函数则可以根据属性名获取属性值。

以下是一个简单的示例:

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def say_hello(self):
        print(f"Hello, my name is {self.name} and I am {self.age} years old.")
创建一个Person对象
person = Person("Tom", 30)
使用dir()函数列出对象的所有属性和方法
attributes = dir(person)
使用getattr()函数获取属性值并打印
for attribute in attributes:
    if not attribute.startswith("__"):  # 过滤掉内置属性和方法
        value = getattr(person, attribute)
        print(f"{attribute}: {value}")

输出结果:

name: Tom
age: 30
say_hello: <bound method Person.say_hello of <__main__.Person object at 0x7f8c1c2d3a90>>

在这个示例中,我们定义了一个Person类,然后创建了一个Person对象,接着,我们使用dir()函数列出了对象的所有属性和方法,然后使用getattr()函数获取属性值并打印,注意,我们过滤掉了以双下划线开头的内置属性和方法。

0

随机文章