“Znajdź średni z listy 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

średnia z listy 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

Znajdź średni z listy Python

3,3,4,5,10
Md. Hasibul Islam

Odpowiedzi podobne do “Znajdź średni z listy Python”

Pytania podobne do “Znajdź średni z listy Python”

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

Przeglądaj inne języki kodu