파이썬기초(16) list_Object
#리스트형 객체 처리 1.기존의 [] 리스트 유형에서 class를 성너하고 ,객체를 추가하여 처리하는 형태를 말한다. 2.주로 데이터를 여라가지 유형의 리스트를 처리할 때 활용할 수 있다. class Product: def __init__(self,name,price,cnt): self.name = name self.price = price self.cnt = cnt def buy(self): print(self.name,end="\t") print(self.price,end="\t") print(self.cnt,end="\n") return self.price*self.cnt pList =[] pList.append(Product("사과",3000,2)) pList.append(Product("딸기",..
더보기