示例#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