class Main(): def __init__(self): super().__init__() print("Kiwoom() class 시작합니다.") self.출력="출력이 될까요?" temp = self.test_print() print(temp) def test_print(self): temp=(self.출력) return temp Main()
하단에
Main()
이
class Main():
을 호출하고
self.출력 변수에 "출력이 될까요?"데이터를 는다.
temp = self.test_print()
temp 변수에 self.test_print() 함수의 return 값을 보관한다.
print(temp)
저장된 temp의 내용을 출력한다.
def test_print(self): temp=(self.출력) return temp
test_print(self) 에서는
self.출력에 담긴 내용을 temp 저장한다.
temp를 전달해준다.
정상출력이 잘되네요.