1. Create a class called Cat.
2. Give it attributes for name, color, and weight.
3. Give it a method called meow.
(Python)
2. Give it attributes for name, color, and weight.
3. Give it a method called meow.
(Python)
Ответ
5
(2 оценки)
1
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()