find the mean of the following♥️♥️♥️
Attachments:
Answers
Answered by
2
weights, building_children = [16, 20, 35, 18], [6, 4, 2, 3]
means = [f"weights: {sum(weights) / len(weights)}",
f"building_children: {sum(building_children) / len(building_children)}" ]
print('Mean\n' + "\n".join(means))
Similar questions