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?
This could be done in one line:
example_list = [10, 100]
print([sum(example_list)])
Output: [110]