파일 목록
#method_test.py
class Test:
def func(self):
print("test.func()")
class Out:
def out(self):
print("Out.Out()")
def func():
print("func()")
a = Test()
b = Out()
a.func()
b.out()
func()
a.out()
b.fun