11
Làm thế nào để truy cập lớp bên ngoài từ lớp bên trong?
Tôi có một tình huống như vậy ... class Outer(object): def some_method(self): # do something class Inner(object): def __init__(self): self.Outer.some_method() # <-- this is the line in question Làm cách nào để truy cập Outerphương thức của lớp từ Innerlớp?