在Python中列出相等性

时间:2017-09-08 03:21:17

标签: python python-3.x list

在此处制作KMeans群集算法: 卡在列表平等上

#clusters = [[],[]]
prevclusters = list(clusters) # Making a new list using clusters elements.
.....
clusters[loc].append(inputs[i]) # Modifying clusters in a for loop
....
# Now, clusters = [[[1, 1], [1, 2]], [[3, 7], [4, 5], [5, 5]]]
if prevclusters == clusters: # Gives True, why ?

1 个答案:

答案 0 :(得分:5)

loc中的cluster编辑项目时,两个列表仍然引用已修改的相同子列表。创建copy.deepcopy时,您可能需要prevclusters列表:

from copy import deepcopy

prevclusters = deepcopy(clusters)