Answers for "find sum of two numbers in list python"

8

find sum of 2 numbers in array using python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Posted by: Guest on March-06-2020
0

find sum numbers in a list in python

list = [5, 8, 7, 2, 9, 13, 27]
a = 0

for i in list:
    a += i

print(a)
Posted by: Guest on August-03-2021

Code answers related to "find sum of two numbers in list python"

Python Answers by Framework

Browse Popular Code Answers by Language