Answers for "python add all elements of a list"

34

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

how to add a number to every element in a list python

new_list = [x+1 for x in my_list]
Posted by: Guest on March-12-2021

Code answers related to "python add all elements of a list"

Python Answers by Framework

Browse Popular Code Answers by Language