__init__

· AboutPython
[클래스] 클래스는 class 키워드와 속성(변수) 그리고 기능(함수)를 이용해서 만든다. class Car : def __init__(self,col,len): # self는 차 self.color = col # 차의 색깔 (속성) self.length = len # 차의 길이 (속성) def do_stop(self): # 정지하는 기능 print('stop!!!!') def do_start(self): # 전진하는 기능 print('start!!!') def print_car_info(self): # 자동차 속성 프린트 print(self) print(f'self.color : {self.color}') print(f'self.length : {self.length}') 객체는 클래스의 생성자를 호출..
scone
'__init__' 태그의 글 목록