[Errno 22] Invalid argument: 'E:\\研究生课题\\十沣\\交付材料20231123\\stress\\trian_code\\stress_data\raw_data\\20231102\\output1.csv'
时间: 2023-11-29 15:47:15 浏览: 60
python爬虫报错:OSError: [Errno 22] Invalid argument
这个错误通常是由于文件路径中包含非法字符或格式不正确导致的。在你提供的路径中,有一个反斜杠字符被转义了,这可能会导致文件路径无效。你可以尝试使用原始字符串来避免这个问题,或者将所有反斜杠替换为正斜杠。以下是两种解决方法:
1.使用原始字符串
```python
path = r'E:\研究生课题\十沣\交付材料20231123\stress\trian_code\stress_data\raw_data\20231102\output1.csv'
```
2.将反斜杠替换为正斜杠
```python
path = 'E:/研究生课题/十沣/交付材料20231123/stress/trian_code/stress_data/raw_data/20231102/output1.csv'
```
阅读全文