The problem is that the path is invalid, the directory as descripted, does not exist.
In addition to the options explained above. You can also try to convert your xls file into csv. Then you only apply the classic:
import pandas as pd
df=pd.read_csv(“ExcelPandasPythonExample”)
hope it helps