OSError: [Errno 22] Invalid argument: 'D:\\software tools\\文本情感分析\\data\x01 AION LX 2022款 Plus 80 智尊版.xlsx'
时间: 2023-09-02 18:15:36 浏览: 122
OSError: [Errno 22] Invalid argument问题解决
这个错误提示表明文件路径中包含了无效的字符,例如`\x01`。你可以尝试将文件路径中的无效字符替换掉,例如:
```python
file_path = 'D:\\software tools\\文本情感分析\\data\x01 AION LX 2022款 Plus 80 智尊版.xlsx'
file_path = file_path.replace('\x01', '') # 将无效字符替换为空字符串
```
或者使用原始字符串:
```python
file_path = r'D:\software tools\文本情感分析\data\x01 AION LX 2022款 Plus 80 智尊版.xlsx'
```
这样就不需要对无效字符进行替换了。
阅读全文