“среднее значение Python” Ответ

Среднее значение элементов списка в Python

# Example to find average of list
number_list = [45, 34, 10, 36, 12, 6, 80]
avg = sum(number_list)/len(number_list)
print("The average is ", round(avg,2))
Comfortable Cow

Python получить среднее значение списка


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

среднее значение 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
Ahh the negotiatior

Ответы похожие на “среднее значение Python”

Вопросы похожие на “среднее значение Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования