鱼C论坛

 找回密码
 立即注册
查看: 2860|回复: 0

[学习笔记] 2022-10-19 学习Python-Day19

[复制链接]
发表于 2022-10-19 17:16:07 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这几天学习类与对象,晕乎乎的
###########################################P67 对象与类
class S(str):
    def __add__(self,other):
        print('qq',self,other)
        return len(self)+len(other)
s1=S('Fishc')
s2=S('ee')
s3=S('fff')
print(s1+s2)
class S1(str):
    def __add__(self, other):
        return NotImplemented
class S2(str):
    def __radd__(self, other):
        return len(self)+len(other)
s1=S1('Apple')
s2=S2('Banana')
print(s1+s2)
class S1(str):
    def __iadd__(self, other):
        return len(self)+len(other)
s1=S1('Apple')
s1+=s2
print(s1)
s2+=s2
print(s2)
###########################################P66 对象与类
print(bin(22))
print(~22)
print(9>>2)
print(0.1+0.2)
class C:
    def __index__(self):
        print('拦截')
        return 3
c=C()
# print(list(c))
s='FishC'
print(s[c])
##################
class C:
    def __getitem__(self, index):
        print(index)
c=C()
c[2]
c[2:8]
s='I love FishC'
print(s[2:6])
print(s[slice(2,6)])
print(s[7:])
print(s[slice(7,None)])
print(s[::4])
print(s[slice(None,None,4)])
class D:
    def __init__(self,data):
        self.data=data
    def __getitem__(self, index):
        return self.data[index]
    def __setitem__(self, index, value):
        self.data[index]=value
d=D([1,2,3,4,5])
print(d[1])
d[1]=1
d[2:4]=[2,3]
print(d[:])
class D:
    def __init__(self,data):
        self.data=data
    def __getitem__(self, index):
        return self.data[index]*2
d=D([1,2,3,4,5])
for i in d:
    print(i,end=' ')
class Double:
    def __init__(self,start,stop):
        self.value = start-1
        self.stop=stop
    def __iter__(self):
        return self
    def __next__(self):
        if self.value ==self.stop:
            raise StopIteration
        self.value +=1
        return self.value*2
d =Double(1,5)
for i in d:
    print(i,end=' ')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-25 09:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表