Import numpy

97

how to import numpy array in python -

>>> import numpy as np
>>> a = np.array([0, 1, 2, 3])
>>> a
array([0, 1, 2, 3])

Comments

Submit
0 Comments