コード例 #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
ファイル: book.py プロジェクト: aldiramadhan623/uaspy20
 def __init__(self, title="", author=author(), price=0, copies=0):
     Publication.__init__(self, title, price, copies)
     self.__author = author