请问为什么这样定义后只有左移可以正常输出,右移输出还是原来的字符串?
class Nstr(str):def __lshift__(self,other):
return self + self[:other] #直接用slice获取字符串新片段再相加即可
def __rshift__(self,other):
return self[:-other] + self[-other:]
运行:
>>> a = Nstr('123456789')
>>> a << 3
'456789123'
>>> a >> 4
'123456789'
>>> a >> 1
'123456789'
>>> a << 2
'345678912' 本帖最后由 jackz007 于 2022-11-19 19:11 编辑
self[:-other] + self[-other:] == self
等于没有操作
__rshift__() 应该这样写
def __rshift__(self,other):
return self[-other:] + self[:-other] jackz007 发表于 2022-11-19 17:34
等于没有操作
__rshift__() 应该这样写
谢谢!
页:
[1]