Answer:
data = [75, 0.2, 95, 0.35, 85, 0.15]
print (f'Average weight: {sum(data) / len(data)}')
Step-by-step explanation:
This is python algorithm for finding average weight. To get average weight, you sum up all data involved and divide that amount by the number of data provided.