Answers for "python sum values of list"

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
1

sum of list of lists python

List = [[1, 2, 3],
        [4, 5, 6],
        [7, 8, 9]]
          

for i in zip(*List):
  print(i)

out: 
(1, 4, 7)
(2, 5, 8)
(3, 6, 9)
Posted by: Guest on December-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language