Answers for "add all values in list python"

16

python sum of list

>>> list = [1, 2, 3]
>>> sum(list)
6
Posted by: Guest on January-27-2020
1

python add all values of another list

a = [1, 2, 3]
b = [4, 5, 6]
a += b
# another way: a.extend(b)
Posted by: Guest on February-03-2020

Code answers related to "add all values in list python"

Python Answers by Framework

Browse Popular Code Answers by Language