“Python uzyskaj średnią listę” 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

Jak użyć funkcji, aby znaleźć średnią w Pythonie

 avreage_cost = cost
    avg = sum(avreage)/len(avreage) 
    print("The average amout you spent is ", round(avg,2))
Open Ostrich

Program Python do obliczenia średniej liczb na danej liście

n=int(input("Enter the number of elements to be inserted: "))
a=[]
for i in range(0,n):
    elem=int(input("Enter element: "))
    a.append(elem)
avg=sum(a)/n
print("Average of elements in the list",round(avg,2))
Sunilkumar Prajapati

Odpowiedzi podobne do “Python uzyskaj średnią listę”

Pytania podobne do “Python uzyskaj średnią listę”

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

Przeglądaj inne języki kodu