Cat Class Lab
This is a group lab.
We created a Dog class together in class. In this lab, create a similar class, but for Cats.
Requirements
- The class should be created in the cat.py file
- The class should be called Cat.
- The class should have two attributes (variables): name with a default value of "Unknown" and age with a default value of 0.
- The class should have one method speak() that returns the string "Meow"
- Instantiate two objects of the class with the following attributes
- stella, with a name "Stella" and age 7
- garfield, with a name "Garfield" and age 50
- Call the method speak from both objects