码迷,mamicode.com
首页 > 编程语言 > 详细

python 获取excel文件的所有sheet名字

时间:2018-02-15 00:57:51      阅读:1064      评论:0      收藏:0      [点我收藏+]

标签:cti   pretty   blog   verify   run   exce   dataframe   ret   ram   

当一个excel文件的sheet比较多时候, 这时候需要获取所有的sheet的名字. 

xl = pd.ExcelFile(foo.xls)

xl.sheet_names  # see all sheet names

xl.parse(sheet_name)  # read a specific sheet to DataFrame

 

也可以直接读取所有的sheet,  将sheetname设置为None.  这时候得到的是一个dict结果.

 df = pandas.read_excel("/yourPath/FileName.xlsx", None);

"df" are all sheets as a dictionary of DataFrames, you can verify it by run this:

df.keys()

python 获取excel文件的所有sheet名字

标签:cti   pretty   blog   verify   run   exce   dataframe   ret   ram   

原文地址:https://www.cnblogs.com/qingyuanjushi/p/8449151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!