![](https://secure.gravatar.com/avatar/25ef0a6698317c91220d6a1a89543df3.jpg?s=120&d=mm&r=g)
Aug. 4, 2015
9:21 p.m.
On Tue, Aug 4, 2015 at 9:06 PM, Chris Angelico <rosuav@gmail.com> wrote:
Being able to add a list and a list is a perfectly reasonable feature.
Sure
from numpy import array array([1,2,3]) + array([3,2,1]) array([4, 4, 4])
.. and how do I concatenate those things?