Program to find out the sum of the numbers in an array.
Answers
Answered by
2
Answer:
hello,
Explanation:
#python Program to find out the sum of the numbers in an array
l=eval(input("enter the list which contains integers"))
sum=0
for i in l:
sum+=i
print(sum,"is the sum of the numbers in an array")
hope it helps you..XD
please mark brainliest
@ItsSnowySecret07
Similar questions