Traceback (most recent call last): File "C:\Users\WE3\Desktop\备件\提取安全库存低的备件.py", line 105, in <module> df = pd.read_excel('备件信息244.xlsx') File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\util\_decorators.py", line 211, in wrapper return func(*args, **kwargs) File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\util\_decorators.py", line 331, in wrapper return func(*args, **kwargs) File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\excel\_base.py", line 482, in read_excel io = ExcelFile(io, storage_options=storage_options, engine=engine) File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\excel\_base.py", line 1652, in __init__ ext = inspect_excel_format( File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\excel\_base.py", line 1525, in inspect_excel_format with get_handle( File "C:\Users\WE3\AppData\Local\Programs\Python\Python38\lib\site-packages\pandas\io\common.py", line 865, in get_handle handle = open(handle, ioargs.mode) FileNotFoundError: [Errno 2] No such file or directory: '备件信息244.xlsx'
时间: 2023-06-29 12:14:19 浏览: 289
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示显示说找不到名为“备件信息244.xlsx”的文件,可能是因为文件名有误或文件不存在导致的。请您确认一下文件名是否正确,并且文件是否存在于当前工作目录中。如果文件名正确且文件确实存在,可以尝试使用绝对路径来读取文件,例如:
```python
import pandas as pd
from datetime import datetime
# 读取原始Excel文件(使用绝对路径)
df = pd.read_excel(r'C:\Users\WE3\Desktop\备件\备件信息244.xlsx')
# 筛选出当前库存小于安全库存的备件信息
low_stock = df[df['当前库存'] < df['安全库存']]
# 获取当前日期
date = datetime.today().strftime('%Y%m%d')
# 将筛选出的备件信息保存到新的Excel文件
low_stock.to_excel(f'{date}安全库存低的备件.xlsx', index=False)
```
这里的文件路径是使用绝对路径的方式来读取Excel文件的,您需要根据实际情况修改文件路径。另外,这段代码中的“r”表示原始字符串,可以避免在路径中使用反斜杠“\”时产生转义字符的问题。
阅读全文