用pycharm读取excel运行不出来

用pycharm读取excel,运行不出来是怎么回事?
表格是xlsx形式的,与python代码在一个文件夹里

读取Excel表格,可以用 pandas 如

import pandas as pd

df = pd.read_excel('xxx.xlsx') ##默认读取sheet = 0print(df)


img

img

贴图贴代码呀兄弟。
看看路径什么的是不是设置对了

img