cell = sheet.cell(coordinates[0] + 1, 3) IndexError: list index out of range
时间: 2023-10-23 13:41:42 浏览: 102
List index out of bounds(-1)错误解决办法
这个错误通常表示您正在尝试访问列表中不存在的索引。具体来说,在此代码行中,您正在尝试访问列表中的索引 `coordinates[0]`,但该索引超出了该列表的范围。可能的原因是 `coordinates` 列表的长度小于 1,或者您正在使用错误的索引访问它。请检查您的代码并确保 `coordinates` 列表包含所需的元素,并且您正在正确地使用索引。
阅读全文