想要执行一个简单的读取文件删除指定行的操作,但是一直报错
问题相关代码如下:
import pandas as pd
from pandas import DataFrame
df = pd.read_excel(r'文件名.xlsx', sheet_name=None)
print(df.drop(df.index[[1, 3]]))
df
报错:AttributeError: 'dict' object has no attribute 'drop'
搜了好久都没有看到相关的解决方法,有知道的吗?