Importing Excel into a Pandas DataFrame without the Index giving me this error
TypeError: read_excel() got an unexpected keyword argument 'index'
As far as I can see, I am not doing any thing wrong here
import pandas as pd
df = pd.read_excel('Prod_User.xlsx', sheet_name='PROD', index=False)
print(df)
but getting the error! What might I be doing wrong here?
index_col=0instead ofindex=False?index=False.read_excel()function, see pandas.pydata.org/docs/reference/api/pandas.read_excel.html