Python program to find the mean of an array def calculateMean(arr, size): sumOfElements = 0 for i in range(size): sumOfElements += arr[i]
確定! 回上一頁