0
How can i use ? Please go to the given code and answer me . Please if u know !
Please. Link 👇👇 https://code.sololearn.com/cCl3aY1WjPWj/?ref=app
3 Réponses
+ 2
visph I've missed you bro. I thought you've deleted your account 😊
+ 1
class A :
a = 0
def __init__(self, a) :
self.a = a
class B(A) :
def __init__(self, a, age) :
super().__init__(a)
self.age = age
b = B(3,9)
print(b.a)
print(b.age)
0
What do you exactly want to do ?