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

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("张三", 30)
使用dir()函数列出对象的所有属性和方法
attributes = dir(person)
使用单元表格打印属性名和属性值
print("属性名t属性值")
for attribute in attributes:
    if not attribute.startswith("__"):  # 过滤掉内置属性和方法
        value = getattr(person, attribute)
        print(f"{attribute}t{value}")

输出结果:

属性名	属性值
age	30
name	张三
say_hello	<bound method Person.say_hello of <__main__.Person object at 0x7f8c1c2d3a90>>

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

0