Python:对象的增删改查

Posted Osword

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:对象的增删改查相关的知识,希望对你有一定的参考价值。

class Person:
number = 0
def __init__(self,name,gender,age):
self.name = name
self.gender = gender
self.age = age
Person.number+=1
def displayPerson(self):
print(‘name:‘,self.name,‘Gender:‘,self.gender,‘Age:‘,self.age)
def displayNumber(self):
print(‘Total person:‘,Person.number)
stu1 = Person(‘Liming‘,‘M‘,19)
stu2 = Person(‘Zhangli‘,‘F‘,20)
setattr(stu1,‘score‘,90)
print(getattr(stu1,‘score‘))
print(‘The score of the first student:‘,stu1.score)
delattr(stu1,‘score‘)
print(hasattr(stu1,‘score‘))

















以上是关于Python:对象的增删改查的主要内容,如果未能解决你的问题,请参考以下文章

MySQL-增删改查简易操作

Python之实例对象的增删改查

Python:对象的增删改查

python3 对list对象的增删改查

django配置模型增删改查

MySQL基本操作--库表增删改查