赞
踩
pandas读取excel常用read_excel函数,官方文档上该函数有很多参数,本节课讲解sheet_name参数,sheet_name决定读取哪些sheet。
sheet_name参数可选类型如下:
1、int类型:默认是0,读取第一个sheet
2、str类型:sheet名,
3、list类型:["sheetname1","sheetname2"],返回字典
4、None:全部sheet,返回字典
如下代码为读取一个或者多个sheet,且单独输出每个sheet的数据。
# -*- coding: utf-8 -*-
import pandas as pd
# 读取第一个sheet
df1 = pd.read_excel("aa.xlsx")
df2 = pd.read_excel("aa.xlsx",sheet_name=0)
df3 = pd.read_excel("aa.xlsx",sheet_name="Sheet1")
print(df3)
print("==================")
# 读取第2个sheet
df4 = pd.read_excel("aa.xlsx",sheet_name=1)
df5 = pd.read_excel("aa.xlsx",sheet_name="Sheet2")
# 读
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。