在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()
函数获取属性值并打印,注意,我们过滤掉了以双下划线开头的内置属性和方法。
最新评论
本站CDN与莫名CDN同款、亚太CDN、速度还不错,值得推荐。
感谢推荐我们公司产品、有什么活动会第一时间公布!
我在用这类站群服务器、还可以. 用很多年了。