# Python program to # demonstrate init with # inheritance class A(object): def __init__(self, something): print("A init called") self.something = something ...
確定! 回上一頁