“Program Python do obliczenia średniej liczb na danej liście” 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

Zrób średnie na Pythonie

# app.py

def averageOfList(num):
    sumOfNumbers = 0
    for t in num:
        sumOfNumbers = sumOfNumbers + t

    avg = sumOfNumbers / len(num)
    return avg


print("The average of List is", averageOfList([19, 21, 46, 11, 18]))
Envious Earthworm

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

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 “Program Python do obliczenia średniej liczb na danej liście”

Pytania podobne do “Program Python do obliczenia średniej liczb na danej liście”

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

Przeglądaj inne języki kodu