“Temukan Mean Daftar Python” Kode Jawaban

nilai rata -rata elemen daftar dalam python

# 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

berarti daftar ular 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

Temukan Mean Daftar Python

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

Jawaban yang mirip dengan “Temukan Mean Daftar Python”

Pertanyaan yang mirip dengan “Temukan Mean Daftar Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya