11
내부 클래스에서 외부 클래스에 액세스하는 방법은 무엇입니까?
이런 상황이 ... 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 Outer클래스에서 클래스의 메서드에 액세스하려면 어떻게 Inner해야합니까?