I'm a python beginner I'm facing issue on numpy
This is my code:
import numpy1 as np
a = np.array([(1, 2, 3), (4, 5, 6)])
print(a)
Error:
AttributeError: partially initialized module 'numpy1' has no attribute 'array' (most likely due to a circular import)
how to fix this?