当前位置:   article > 正文

python读取指定sheet-pandds指定一个或多个sheet读取excel(sheet_name参数)

python sheet_name

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")

# 读

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/209661
推荐阅读
相关标签
  

闽ICP备14008679号