add numbers in array python code example
Example 1: addition of array in python with input
#Python program to add all the array elements using the built-in function
lst = []
num = int(input("Enter the size of the array: "))
print("Enter array elements: ")
for n in range(num):
numbers = int(input())
lst.append(numbers)
print("Sum:", sum(lst))
Example 2: numpy python add array
x1 = [1, 2]
x2 = [1, 2]
print(np.add(x1, x2))
# [2, 4]