Car Class 고객 차량 관리 서비스 class Car: def __init__(self, model1, color1, year1, company1): self.__model = model1 self.__color = color1 self.__year = year1 self.__company = company1 def print_carinfo(self): print('모델 : ', self.__model) print('색상 : ', self.__color) print('연도 : ', self.__year) print('제조 : ', self.__company) class Customer: def __init__(self, name1, tel1, addr1, car): self.__name = name..