I tried importing the numpy package in Python and faced a lot of problems initially because of the path variable. After handling that issue and importing numpy,using the array object gives me an attribute error.
>>import numpy
>>x=numpy.array([1,2,3])
Traceback (most recent call last):
File "<stdin>",line 1, in <module>
AttributeError: 'module' object has no attribute 'array'
Please help.