标签: python list adjacency-list numpy-ndarray
我尝试创建列表的ndarray,但没有用。
adjacency_list = np.ndarray(10, dtype = list)
每当我尝试附加一些内容,例如:adjacency_list.item(2).append(3)时,都会收到错误消息:AttributeError: 'NoneType' object has no attribute 'append'。我究竟做错了什么?有没有更好/更有效的方法来存储邻接列表?
adjacency_list.item(2).append(3)
AttributeError: 'NoneType' object has no attribute 'append'