12 строки
297 B
Python
12 строки
297 B
Python
# Модуль 3
|
|
class Class1:
|
|
def zad_zn(self,znach):
|
|
self.data=znach
|
|
def otobraz(self):
|
|
print(self.data)
|
|
class Class2(Class1):
|
|
def otobraz(self):
|
|
print('значение =',self.data)
|
|
def otobraz(objekt):
|
|
print('значение объекта =',objekt)
|