14 lines
274 B
Python
14 lines
274 B
Python
class Human:
|
|
def __init__(self):
|
|
self.health = 100
|
|
self.money = 100
|
|
|
|
class Student(Human):
|
|
def __init__(self, name, age):
|
|
super().__init__()
|
|
self.name = name
|
|
self.age = age
|
|
|
|
student1 = Student("kir", 20)
|
|
print(student1.money)
|