Python Program to find the average of numbers in a given list


In this program, You will learn how to find the average of numbers in a given list in Python.


data =[2, 3, 4, 5]

Example: How to find the average of numbers in a given list in Python

k = int(input("Enter how many number:"))

data = []
s = 0
print("Enter numbers:", end="")
for i in range(0, k):
    num = int(input())

    data.append(num)

for value in data:
    s = s + value

avg = s / k
print("Sum of list is:", s)
print("Average is:", avg)

Output:

Enter how many number:4
Enter numbers:10
20
30
40
Sum of list is: 100
Average is: 25.0