11. 파이썬 클래스 / 281 ~ 290 # 파이썬 300제 _ 281번 ~ 287번 # class CAR(): # def __init__(self, wheel, price): # self.wheel = wheel # self.price = price # def info(self): # print("바퀴수 ", self.wheel) # print("가격 ", self.price) # class BICYCLE(CAR): # # pass # def __init__(self, wheel, price, ds): # super().__init__(wheel, price) # self.ds = ds # def info(self): # super().info() # print("구동계 ", self.ds) # cl..