Python Program to find the average of n numbers using the function


In this program, You will learn how to find the average of n numbers using the function in Python.


Numbers are : 2 3 4 5

avg = 2 + 3 + 4 + 5 / 4

Example: How to find the average of n numbers using the function in Python.

def findavg(k):
    s = 0
    print("Enter numbers:", end=" ")
    for i in range(0, k):
        n = int(input())
        s = s + n

    avg = s / k
    return avg


k = int(input("Enter how many number:"))
s = findavg(k)
print("Average of n numbers: ", s)

Output:

Enter how many number:4
Enter numbers: 2
3
4
3
Average of n numbers:  3.0