“Zrób średnie na Pythonie” 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

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

Odpowiedzi podobne do “Zrób średnie na Pythonie”

Pytania podobne do “Zrób średnie na Pythonie”

Więcej pokrewnych odpowiedzi na “Zrób średnie na Pythonie” w Python

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