how do i add the integers in a list with itsself in python code example
Example: how do i add the integers in a list with itsself in python
x = [2, 4, 7, 12, 3]
sum_of_all_numbers= sum(x)
or
x = [2, 4, 7, 12, 3]
sum_of_all_numbers= reduce(lambda q,p: p+q, x)