想问下pandas怎么获取sheet的名字或者个数
本帖最后由 浮云。 于 2019-8-3 16:38 编辑问问各位大佬,想问下pandas怎么获取sheet的名字或者个数 excel = pandas.ExcelFile("your excel")
excel.sheet_names 就是所有sheet的列表,len(excel.sheet_names)就是数目了 co3site 发表于 2019-8-3 13:50
excel = pandas.ExcelFile("your excel")
excel.sheet_names 就是所有sheet的列表,len(excel.sheet_names ...
明白,谢谢 其实我更想知道的是,如何根据sheetname知道这是第几个sheet……难道对着列表进行index或者find吗233333 God_Fire 发表于 2019-8-3 17:15
其实我更想知道的是,如何根据sheetname知道这是第几个sheet……难道对着列表进行index或者find吗233333
sheet_name获取到的列表应该是按照顺序获取的吧,,用list.index应该就能获取到是第几个了吧。。
页:
[1]