class A: def a(self): print("hello world") def b(self): return self.a()
上面的self.a()中self是不可缺少的,否则找不到a()的定义,这是和C++/C语言所不同的.