python/pandas 读取Excel不同sheet的数据(或名称)

时间:2024-03-17 10:06:05

场景:nickname.xlsx有两个sheet,
sheet名称分别是:基本信息,用户昵称
如图:
python/pandas 读取Excel不同sheet的数据(或名称)
python/pandas 读取Excel不同sheet的数据(或名称)

现在想读取两个sheet的数据:

1.读取两个sheet名称:
sheet=pd.read_excel(‘nickname.xlsx’,sheet_name=None)
print(list(sheet.keys()))
for j in sheet.keys():
print(j)
注:此处把我的xlsx的文件路径省略
执行结果如图:
python/pandas 读取Excel不同sheet的数据(或名称)

2.读取两个sheet内容:
sheet=pd.read_excel(‘nickname.xlsx’,sheet_name=None)
for j1 in sheet.values():
j1=j1.to_dict(orient=‘records’)
print(j1)
执行结果如图:
python/pandas 读取Excel不同sheet的数据(或名称)
3.读取两个sheet的名称和内容:
sheet=pd.read_excel(‘nickname.xlsx’,sheet_name=None)
for k,v in sheet.items():
v = v.to_dict(orient=‘records’)
print(k,v)
执行结果如图:
python/pandas 读取Excel不同sheet的数据(或名称)
完整代码:
python/pandas 读取Excel不同sheet的数据(或名称)

最后注意:
1.sheet_name=None这个一定要加上。
不加的话,python默认只读取Excel的第一个sheet。
2.to_dict(orient=‘records’)这个表示把pandas的
python/pandas 读取Excel不同sheet的数据(或名称)
上面的数据类型变成(字典列表)下面这种:
python/pandas 读取Excel不同sheet的数据(或名称)