Choose the missing parts of the program to have the following output.
pet:
def __init__(
,strSpecies,strName):
self.species = strSpecies
self.petName = strName
def __str__(self):
return self.species + " named " + self.petName
# main program
myPetA = pet('dog', 'Spot')
myPetB = pet('cat', 'Fluffy')