1. Create a class called Cat.
2. Give it attributes for name, color, and weight.
3. Give it a method called meow.
(Python)​
Ответ
5 (2 оценки)
1
FlowerScript 2 года назад
Светило науки - 63 ответа - 0 раз оказано помощи

class Cat:

   def __init__(self, name, color, weight):

       self.name = name

       self.color = color

       self.weight = weight

   def meow(self):

       print("Cat name: " + self.name, "nCat color: " + self.color, "nCat weight: " + self.weight)

cat = Cat("Bella", "A grey striped tabby", "4.5 kg")

cat.meow()

Остались вопросы?