Answers for "write a python function to sum all the numbers in a list. sample list : (8, 2, 3, 0, 7)"

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 "write a python function to sum all the numbers in a list. sample list : (8, 2, 3, 0, 7)"

Python Answers by Framework

Browse Popular Code Answers by Language