我正在尝试使用 python 中的类。我尝试运行以下代码。
class Abc:
def a(self):
print ("not to be seen")
def b(self):
print("inaccessible is")
self.a
say = Abc()
say.b
我期待输出为
inaccessible is
not to be seen
相反,我得到以下输出:
SyntaxError: invalid syntax
说突出显示。
请有人指出我做错了什么。
编辑:我正在使用 IDLE GUI。Python 33 说 Python 文档。