当前位置:   article > 正文

python TypeError: list indices must be integers or slices, not list

list indices must be integers or slices, not list

错误复现

a = [1,2,3]
b = a[[0,2]]
  • 1
  • 2

报错及原因

TypeError: list indices must be integers or slices, not list
list数据结构不支持从list中取两个下标/索引不连续的元素

解决办法

a = [1,2,3]
import numpy as np
b = [a[0], a[2]]
  • 1
  • 2
  • 3

当然这种解决办法略显笨拙,而且如果想提取的元素很多的话就很麻烦,更好的解决办法详见:python从list中提取多个下标/索引不连续的元素

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/642857
推荐阅读
相关标签
  

闽ICP备14008679号