Python之类属性的增删改查
Posted wy0925
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之类属性的增删改查相关的知识,希望对你有一定的参考价值。
#类属性又称为静态变量,或者是静态数据,这些数据是他们所属的类对象绑定的,不依赖于任何类实例
class ChinesePeople:
country = ‘china‘
def __init__(self,name):
self.name = name
def play_ball(self,ball):
print ("%s 正在打 %s" %(self.name))
def say_word(self,word):
print ("%s 说 %s" %(self.name,word))
#查看类属性
print (ChinesePeople.country)
#修改类属性
ChinesePeople.country = "CHINA"
print ChinesePeople.country
#删除类属性
del ChinesePeople.country
#增加类属性
ChinesePeople.country = "china"
ChinesePeople.location = "Asia"
print (ChinesePeople.__dict__)
以上是关于Python之类属性的增删改查的主要内容,如果未能解决你的问题,请参考以下文章