index 23 is out of bounds for axis 0 with size 23
时间: 2024-01-03 22:04:22 浏览: 190
List index out of bounds(-1)错误解决办法
这个错误通常意味着你正在尝试访问数组或列表中不存在的索引。在Python中,索引通常从0开始,因此如果你的数组或列表大小为23,则最大索引为22,如果你尝试访问索引23,则会出现"IndexError: index 23 is out of bounds for axis 0 with size 23"的错误。请检查你的代码并确保你没有使用超出数组或列表大小的索引。
阅读全文