""" Create a cat object with a name and a number of legs. Write a function talk which takes a cat and make the cat say meow. Look at the example tests to see exactly how the cat's meowing should look. """ cat1 = cat.create('Cat', 4) cat2 = cat.create('Kitteh', 3) self.assertEqual(cat.talk(cat1), 'Cat the 4 legged cat says meow!') self.assertEqual(cat.talk(cat2), 'Kitteh the 3 legged cat says meow!')