不知道为什么会这样或如何解决。我是Python的新手,感谢您的帮助。
class Sentence:
def __init__(self, s):
self.s= s
x=s[:-1]
self.L= list(x.split())
def __getitem__(self,idx):
return (self.L[idx])
s= Sentence('What a beautiful morning!')
getitem(s, 2)
NameError:未定义名称“ getitem”
肥皂起泡泡
千万里不及你
相关分类