So I am trying to load an excel file with multiple sheets in it. It is not a CSV file. So I am trying to use read_excel and then giving the reference to the file but still unable to load it.
How do I correct this code?
So I am trying to load an excel file with multiple sheets in it. It is not a CSV file. So I am trying to use read_excel and then giving the reference to the file but still unable to load it.
How do I correct this code?
Prefix your file name by r
(raw strings) else \Users
will be considered as an unicode sequence:
df = pd.read_excel(r"C:\Users\...")
# HERE --^