Python: 类型错误:列表索引必须是整数,而不是列表。

4
我有两个坐标列表,它们看起来像这样: list_kp2_ok:
[[1185.60009765625, 933.6000366210938], [1310.4000244140625, 828.0000610351562], [1067.0, 979.0], [1310.0, 828.0], [1423.2000732421875, 814.800048828125], [1306.0, 828.0], [3634.0, 605.0], [1308.0960693359375, 827.7120971679688], [1422.7200927734375, 815.0400390625], [1185.1199951171875, 933.1200561523438], [1186.56005859375, 923.0400390625], [1306.3681640625, 829.4401245117188], [1194.393798828125, 839.80810546875], [1187.1361083984375, 922.7520751953125], [1082.8800048828125, 849.6000366210938]]

list_kp2_2_ok:

[[835.0, 1201.0], [1086.0, 850.0], [1187.0, 924.0], [1197.0, 839.0], [1310.0, 828.0], [3634.0, 605.0], [1195.2000732421875, 838.800048828125], [1308.0, 828.0000610351562], [1084.800048828125, 849.6000366210938], [1310.4000244140625, 828.0000610351562], [1186.800048828125, 924.0000610351562], [1296.0, 956.4000244140625], [1082.8800048828125, 849.6000366210938], [1072.800048828125, 944.6400146484375], [1083.4560546875, 850.1760864257812], [1187.1361083984375, 922.7520751953125], [3633.984375, 606.528076171875], [1082.4193115234375, 850.1761474609375], [1306.3681640625, 829.4401245117188], [1181.9521484375, 966.2977294921875], [1306.3682861328125, 828.6107788085938]]

现在我需要检查两个列表中是否有相同的坐标,并创建一个新的含有这些坐标的列表。 于是我写了:
list_wsp=[]
count=0
count1=0
print type(count)
print type(count1)
for count in list_kp2_ok:
    for count1 in list_kp2_2_ok:
        if list_kp2_ok[count]==list_kp2_2_ok[count1]:
            list_wsp.append(list_kp2_ok[count])
            count1=count1+1
            if count1==len(list_kp2_2_ok)-1:
                break
        count=count+1
        if count==len(list_kp2_ok)-1:
            break

and...

TypeError: list indices must be integers, not list

我不知道出了什么问题,找不到解决方法... 有人可以帮我吗?也许有更简单的方法来做这件事吗?

每个列表中只有唯一的对,还是其中存在重复值? - kylieCatt
这个 for count in list_k2_ok 重写了 count=0。变量 countercounter1 的声明对后续代码没有影响,是徒劳的。 - cezar
5个回答

5

Python的for循环不是基于索引的,它实际上是在序列(或任何可迭代对象)上进行迭代。因此,在这段代码中:

for whatever in some_iterable:
    do_something_with(whatever)

whatever 连续绑定到 some_iterable 中的每个项目。例如:

>>> mylist = ["A", "B", "C"]
>>> for item in mylist:
...     print "item is", item
... 
item is A
item is B
item is C

如果您希望对索引进行操作,您可以使用内置的enumerate(iterable,start=0)函数。该函数会为iterable中的每个元素返回一个包含(index, item)的元组。
>>> for index, item in enumerate(mylist):
...     print "item %s is %s" % (index, item)
... 
item 0 is A
item 1 is B
item 2 is C

3
您正在使用非int类型索引对列表进行索引:
for count in list_kp2_ok:
    for count1 in list_kp2_2_ok:
        if list_kp2_ok[count]==list_kp2_2_ok[count1]:

所以快速解决这个问题的方法是这样的:
for coord1 in list_kp2_ok:
    for coord2 in list_kp2_2_ok:
        if coord1==coord2:

你甚至可以在一条语句中完成整个编码:

list_wsp=[coords for coords in list_kp2_ok if coords in list_kp2_2_ok]

这将直接输出两个列表中的共同坐标。

2

你可以使用列表推导式:

new_list = [i for i in list_kp2_ok if i in list_kp2_2_ok]

0

您不必声明计数器变量。您可以使用for-in遍历列表:

list_wsp = []
for elem in list_k2_ok:
    for elem1 in list_k2_2_ok:
        if elem == elem1:
            list_wsp.append(elem)

这将创建具有相同坐标的新列表。


0

另一种方法可能是尝试使用集合:

for x in set([tuple(l) for l in list_kp2_ok]).intersection(set([tuple(l) for l in list_kp2_2_ok])):
    print x

首先将内部列表项转换为元组,因为它们可以被 set 函数哈希。答案是两个集合的交集。这会删除可能或可能不需要的任何重复。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接