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))
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