python 的类属性的增删改查

#数据属性和函数属性的增删改查
class Chinese:
    Country="China"
    def __init__(self,name,ball):
        self.name=name
        self.ball=ball

    def play_basketball(self):
        print('%s 正在打%s'%(self.name,self.ball))
p1=Chinese('小明','篮球')
print(p1.__dict__)
print(Chinese.Country)
#类属性的改变
Chinese.Country='sinapore'
print(Chinese.Country)
#增加类属性
Chinese.dang='国名党'
print(Chinese.dang)
#删除
# del Chinese.dang,Chinese.Country
# print(Chinese.__dict__)
def eat_food(self,name):
    print("小明正在吃%s"%self.ball)
Chinese.eat=eat_food
print(Chinese.__dict__)
p1.eat('蛋糕')
                         #实列属性的增删改查
country="中国-------"
class Chinese:
    country="中国"#调用这个属性
    def __init__(self,name):
        self.name=name
        print("--->",country)
    def play_ball(self,ball):
        print("%s正在打%s"%(self.name,ball))
p1=Chinese('alex')
#  不用点调用  和类和 实例没关系
p2=Chinese.country
print(p2)

class Chinese:
    country='China'
    l=['a','b']
    def __init__(self,name):
        self.name=name
p1.l=[1,2,3]#直接在p1中又赋了一个
print(p1.__dict__)
print('_______>',Chinese.l)
p1.l.append('c')
print(p1.__dict__)
print(Chinese.l)#实列调用类的方法时候 不用传第一个参数  但是类去调用实列 必须传第一个参数
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值