show/hide this revision's text 3 deleted 13 characters in body

Hi, I often do vector addition of Python lists.

Example: I have two lists like these:

a = [0, 10.0, 1.0, 22.0]
b = [3, 43.0, 4.0, 55.0]

I now want to add b to a to get the result a = [3, 53.0, 5.0, 77.0].

Usually I end up doing like this:

a[0] += b[0]
a[1] += b[1]
a[2] += b[2]

Is there some efficient, standard way to do this with less typing?

UPDATE: It can be assumed that the lists are of length 3 and contain floats.

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Concise vector adding in Python?

Hi, I often do vector addition of Python lists.

Example: I have two lists like these:

a = [0, 1, 2]
b = [3, 4, 5]

I now want to add b to a to get the result a = [3, 5, 7].

Usually I end up doing like this:

a[0] += b[0]
a[1] += b[1]
a[2] += b[2]

Is there some efficient, standard way to do this with less typing?