im trying to find the average value in a list. but sometimes my list contains large numbers that could affect calculating the average number.
list = [215,255,210,205,450,315,235,250,450,250,250,250,210,450,210]
it would make sense that the average would range from 210 to 250, but number such as 450 and 315 could increase the average value. how do automatically remove dominant factors like the number 450 and easily find the correct average number?