输出时提示TypeError: list indices must be integers or slices, not tuple
时间: 2023-07-21 17:04:22 浏览: 141
Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
5星 · 资源好评率100%
抱歉,我之前给出的代码有误。如果你遇到了`TypeError: list indices must be integers or slices, not tuple`错误,可能是因为你在尝试取出DataFrame的特定列时传入了一个元组而不是一个列表。
请确保你使用的是方括号`[]`来指定要取出的列,而不是圆括号`()`。以下是正确的示例:
```python
df[['列名1', '列名2', ...]]
```
请将`列名1`、`列名2`等替换为你要取出的列的名称。例如:
```python
df[['name', 'age']]
```
这样,你将能够成功取出DataFrame中的特定列。如果还有其他问题,请随时提问。
阅读全文