Si a = np.array([0,1,2,3,4,5,6,7,8,9,10])
what type is A?
well im trying to learn how to use python but im having a lot of problems, idk if you can help me
Si a = np.array([0,1,2,3,4,5,6,7,8,9,10])
what type is A?
well im trying to learn how to use python but im having a lot of problems, idk if you can help me
Try it and find out.
Here's how I got class numpy.ndarray
:
>>> import numpy
>>> a = numpy.array([1, 2, 3, 4])
>>> type(a)
<class 'numpy.ndarray'>