AttributeError: module 'pandas' has no attribute 'red_csv'
时间: 2023-09-13 10:10:29 浏览: 144
解决pandas使用read_csv()读取文件遇到的问题
5星 · 资源好评率100%
这个错误提示是因为 Pandas 模块中没有名为 red_csv 的属性或方法。也许你想使用 read_csv 方法来读取 CSV 文件,那么你需要把 red_csv 改为 read_csv。
例如:
```
import pandas as pd
data = pd.read_csv('file.csv')
```
这样就可以使用 Pandas 读取 CSV 文件了。如果还有其他问题,请随时问我。
阅读全文