Hi.
I commenced to work with python(sumlime) and growing up gradually, when I learned array, I faced to numpy topic and tried to install numpy with command prompt.it is result of my installation:
pip show numpy
Name: numpy
Version: 1.19.4
Summary: NumPy is the fundamental package for array computing with Python.
Required-by: scipy, matplotlib
it shows that installation performed successfully.
I tried to run simple code like it
arr=array(‘i’, [1,2,32,5,4], [3,5,6,9])
print(arr)
it worth to be mentioned numpy has already imported
I faced with this ERROR
TypeError: array() takes at most 2 arguments (3 given)
what’s wrong with me!