Answers for "sum elements list python"

36

how to calculate the sum of a list in python

# Python code to demonstrate the working of  
# sum() 
numbers = [1,2,3,4,5,1,4,5] 
  
# start parameter is not provided 
Sum = sum(numbers) 
print(Sum) # result is 25  
# start = 10 
Sum = sum(numbers, 10) 
print(Sum) # result is 10 +25 = 35
Posted by: Guest on May-25-2020
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
-1

how to do the sum of list in python

def calculate_cards(cards):
    total= 0
    for card in cards:
        total = total + card
    return total
print(calculate_cards([11,7,5]))
Posted by: Guest on August-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language