Перегрузка
class Person:
def print_h(self):
print("I am Human")
class Student(Person):
def print_h(self):
print("I am a student")
s = Student()
s.print_h()
# I am a student
123456789101112Last updated
class Person:
def print_h(self):
print("I am Human")
class Student(Person):
def print_h(self):
print("I am a student")
s = Student()
s.print_h()
# I am a student
123456789101112Last updated