I want to use the array method from the numpy package, but I get an attribute error and it says that there is no method called array. what is the problem?
import numpy as np
x = [2, 3, 4, 6, 7, 9]
y = np.array(x)
print(y)
AttributeError: partially initialized module 'numpy' has no attribute 'array' (most likely due to a circular import)