Pythonバージョン3.3.2を使用しているときにこのエラーが発生し続けます.YouTubeでチュートリアルを見て試してみましたが、彼が使用していたバージョンは2.7です.
>>> class challee:
def cname(self,name):
self.name = name
def display(self):
return self.name
def say(self):
print("help %s" % self.name)
>>> challee
<class '__main__.challee'>
>>> first = challee
>>> second = challee
>>> first.cname(first,"becky")
>>> second.cname(first,"tony")
>>> first.display()
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
first.display()
AttributeError: type object 'challee' has no attribute 'display'