Chap01
파이선 생성자와 파괴자 파이선에 초기화는 class에 초기화 설정을 하여 초기화를 꾀할 수 있다. #bookstore.py class Book: def setData(self,title, price, author): self.title = title self.price = price self.author = author def printData(self): print '제목 : ', self.title print '가격 : ', self.price print '저자 : ', self.author def __init__(self, title, price, author): self.setData(title,price,author) print 'a new Books for now' 기초적인 크랠스의 (1)__..
더보기