Traceback (most recent call last): File "E:\pythonproject\wu.py", line 8, in <module> df = pd.read_csv(r'E:/wu.csv', header=None) File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\parsers\readers.py", line 912, in read_csv return _read(filepath_or_buffer, kwds) File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\parsers\readers.py", line 577, in _read parser = TextFileReader(filepath_or_buffer, **kwds) File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\parsers\readers.py", line 1407, in __init__ self._engine = self._make_engine(f, self.engine) File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\parsers\readers.py", line 1661, in _make_engine self.handles = get_handle( File "C:\Users\Lenovo\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\common.py", line 859, in get_handle handle = open( FileNotFoundError: [Errno 2] No such file or directory: 'E:/wu.csv'
时间: 2023-07-08 15:52:53 浏览: 98
python小爬虫.zip
这个错误提示意味着指定的CSV文件'E:/wu.csv'不存在,Python无法找到该文件。
请确认该路径是否正确,并且确保该路径下存在名为'wu.csv'的文件。如果文件确实存在,可能是因为你没有访问该文件的权限,或者文件正在被其他程序占用。
你可以尝试使用其他文件路径,比如将文件放在Python脚本所在的文件夹中,并使用相对路径来读取文件:
```python
df = pd.read_csv('wu.csv', header=None) # 相对路径
```
如果文件路径正确但仍然无法读取,可以尝试在代码中增加异常处理语句,以便更好地调试和排除问题:
```python
import pandas as pd
try:
df = pd.read_csv(r'E:/wu.csv', header=None)
except Exception as e:
print(e)
```
这样,如果出现错误,程序将会输出错误信息,以便你更好地排除问题。
阅读全文