Comment on Bruce Eckel announces he's going to write Atomic PythonparentComments−vessenes11yYes, python. In [1]: import numpy as np In [2]: a = np.array([1,2]) In [3]: b = np.array([3,4]) In [4]: a+b Out[4]: array([4, 6])−bwohlergo11ywe are talking about Lists, not arrays from an unrelated library which has to be installed first. what you've done there is simply dishonestIn [1]: a = [1,2]In [2]: b = [4,5]In [3]: print(a+b)Out [1, 2, 4, 5]
Comments
Yes, python.
we are talking about Lists, not arrays from an unrelated library which has to be installed first. what you've done there is simply dishonest
In [1]: a = [1,2]
In [2]: b = [4,5]
In [3]: print(a+b)
Out [1, 2, 4, 5]