class Bird: # Modify the program so that there is a 'species' attribute # This attribute will be set to the value of parameter # which is passed to the constructor # What is wrong with these solutions def __init__(self,newSpecies): species = newSpecies self.full = False def __init__(self,species): species = species self.full = False