I am trying to add the elements that are in a row vector to a 1X1 vector in python, Problem: [10 100]
Solution: [110]
Is there any way to achieve this?
CodePudding user response:
This could be done in one line:
example_list = [10, 100]
print([sum(example_list)])
Output: [110]
CodePudding user response:
Example provided in question is more of a list.
To sum up all the elements in a list, sum() function can be used.
e.g:
sum([10 100])
//output: 110