This commit is contained in:
2026-07-30 11:35:10 +05:00
commit 8a3ec978ad
113 changed files with 3384 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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)