4 lines
139 B
Python
4 lines
139 B
Python
class Critter(object):
|
|
def talk(self):
|
|
print("Привет. Я - зверюшка - экземпляр класса Critter.")
|