object1 Lecture 84 - Python(5) 클래스와 객체, 모듈 클래스 클래스 구조 만들기 객체에 숫자 지정할 수 있게 만들기 ''' Created on 2018. 9. 14. @author: kitcoop ''' # 함수(function) def func1(): print('func1() 호출') def func2(first): print('func2() 호출 : {0}'.format(first)) class FourCal : # 메서드 def cfunc1(self): print('cfunc1() 호출') # self = this print(self) def cfunc2(self, first): print('cfunc2() 호출 : {0}'.format(first)) a = FourCal() print(type(a)) func1() a.cfunc1() func2(1.. 2019. 7. 25. 이전 1 다음