Skip to content

Python 面向对象

Updated: at 07:00 PM
class A
def a(self):
    pass
self.a()

b = A()
b.a()