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


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


14 = 2 + 3 + 4 + 5

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

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


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

Output:

Enter how many number:3
Enter numbers: 10
20
30
Sum of n numbers: 60