I am doing something very simple, converting an excel spreadsheet to a pandas dataframe, but for some reason I keep getting this error: No such file or directory....
I have the file downloaded and saved to my computer and restarted my program, so I don't know what could be wrong. Any clue what's up?
Here is my code...
import pandas as pd
file_name ="file.xlsx"
dataframe = pd.read_excel(file_name)
print(dataframe)