gpt4 book ai didi

python 错误 "list indices must be integers",它们是整数

转载 作者:太空狗 更新时间:2023-10-29 18:18:24 26 4
gpt4 key购买 nike

我有一个问题。我有一个包含 31 个元素的数组,称为颜色。我还有另一个数组,整数在 0 到 31 之间变化,这称为 c。我想生成一个新数组,其中 c 中的值现在是颜色中的相应值。

我写:

newarray=colors[c]

但得到错误消息“list indices must be integers”但 c 是一个整数数组。我是 python 的新手,没有时间学习教程,因为我只需要它来完成特定的绘图任务。谁能帮帮我?

谢谢

最佳答案

整数数组!=整数

列表索引必须是整数 - 你已经给出了一个整数列表。

你可能想要一个列表理解:

newarray = [ colors[i] for i in c ]

编辑:

如果您仍然遇到相同的错误,那么您关于 c 是整数列表的断言是不正确的。

请尝试:

print type(c)
print type(c[0])
print type(colors)
print type(colors[0])

然后我们可以算出你有什么类型。还有一个 short but complete example会有所帮助,并且可能会教给您很多关于您的问题的知识。

编辑2:

因此,如果 c 实际上是一个字符串列表,您可能应该提到这一点,与其他一些脚本语言不同,字符串不会自动转换为整数。

newarray = [ colors[int(i)] for i in c ]

编辑3:

下面是一些演示了几个错误修复的最小代码:

x=["1\t2\t3","4\t5\t6","1\t2\t0","1\t2\t31"]
a=[y.split('\t')[0] for y in x]
b=[y.split('\t')[1] for y in x]
c=[y.split('\t')[2] for y in x] # this line is probably the problem
colors=['#FFFF00']*32
newarray=[colors[int(i)] for i in c]
print newarray

a) colors 需要有 32 个条目。 b) 列表推导中来自c(i)的元素需要转换为整数(int(i))。

关于python 错误 "list indices must be integers",它们是整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1453882/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com