To calculate the mean from a list, a solution is to use the python module statistics, example: from statistics import mean l_mean = mean(l) ...
確定! 回上一頁