'''
hasattr: 可以判断一个对象是否包含某个属性
getattr: 可以获取对象中某一个属性的值
setattr: 可以设置对象中某一个属性的值
'''
class Person():
def __init__(self):
self.name = 'ruochen'
self.age = 18
def show(self):
print(self.name)
print(self.age)
if hasattr(Person, 'show'):
print('存在show方法')
person = Person()
setattr(person, 'sex', '男')
setattr(person, 'age', 21)
print(getattr(person, 'sex'))
print(getattr(person, 'age'))
print(getattr(person, 'name'))
person.show()
存在show方法
男
21
ruochen
ruochen
21
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。