Let's explore the relationship between being fed breastmilk as a child and getting a seasonal influenza vaccine from a healthcare provider. Return a tuple of the average number of influenza vaccines for those children we know received breastmilk as a child and those who know did not. This function should return a tuple in the form (use the correct numbers: (2. 5, 0. 1) In [ ]: def average_influenza_doses(): # YOUR CODE HERE raise NotImplementedError() In [ ]: assert len(average_influenza_doses())==2, "Return two values in a tuple, the first for yes and the second for no. "



Answer :