Answers for "addition of array in python with input"

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))
Posted by: Guest on May-18-2020

Code answers related to "addition of array in python with input"

Python Answers by Framework

Browse Popular Code Answers by Language