mean of a list python
import numpy as np
np.mean(list)
np.std(list)
mean of a list python
import numpy as np
np.mean(list)
np.std(list)
list mean python
# Python program to get average of a list
def Average(lst):
return sum(lst) / len(lst)
# Driver Code
lst = [15, 9, 55, 41, 35, 20, 62, 49]
average = Average(lst)
# Printing average of the list
print("Average of the list =", round(average, 2))
# Output:
# Average of the list = 35.75
python get average of list
#python3
def average(list):
result = sum(list) / len(list)
return result
list = [68,68,71,71,71,75,71,78,91,98,75,71,84]
print(average(list))
mean of a list python
l = [15, 18, 2, 36, 12, 78, 5, 6, 9]
# By using the built-in statistics library
import statistics
statistics.mean(l) # 20.11111111111111
# By defining a custom function
def average(my_list):
return sum(my_list) / len(my_list)
average(l) # 20.11111111111111
python average function program
#!/bin/python3
import math
import os
import random
import re
import sys
# write your code here
def avg(*n):
sumOfNumber = 0
for t in n:
sumOfNumber = sumOfNumber + t
avge = sumOfNumber / len(n)
return avge
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
nums = list(map(int, input().split()))
res = avg(*nums)
fptr.write('%.2f' % res + 'n')
fptr.close()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us