Search code examples
pythonlistvector

Adding elements in a 1 D vector


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?


Solution

  • This could be done in one line:

    example_list = [10, 100]
    
    print([sum(example_list)])
    

    Output: [110]