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