예제 #1
0
파일: book.py 프로젝트: StvnRD/uaspy20
 def __init__(self, title="", author=Author(), price=0, copies=0):
     self.publik = Publication(title, price, copies)
     self.__author = author
예제 #2
0
파일: book.py 프로젝트: rickyruss/UAS
 def __init__(self, title="", author=Author(), price=0, copies=0):
     Publication.__init__(self, title, price, copies)
     self.title = title
     self.copies = copies
     self.price = price
     self.__author = author
예제 #3
0
 def __init__(self, title="", author=author(), price=0, copies=0):
     Publication.__init__(self, title, price, copies)
     self.__author = author