“średnie wartości w liście python” Kod odpowiedzi

Średnia wartość elementów listy w Pythonie

# 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 uzyskaj średnią 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))
Ericsson

średnie wartości w liście python

number_list = [45, 34, 10, 36, 12, 6, 80]
avg = sum(number_list)/len(number_list)
print("The average is ", round(avg,2))
Khasan Kamalov

Odpowiedzi podobne do “średnie wartości w liście python”

Pytania podobne do “średnie wartości w liście python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu