如何用Python删除或者移动Excel中的sheet
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用Python删除或者移动Excel中的sheet相关的知识,希望对你有一定的参考价值。
参考技术A import xlrdb = xlrd.open_workbook('path/to/excel')
count = len(b.sheets()) #sheet数量
for sheet in b.sheets():
print sheet.name #sheet名称 参考技术B 同Excel文件sheet复制,两Excel文件.本回答被提问者采纳
以上是关于如何用Python删除或者移动Excel中的sheet的主要内容,如果未能解决你的问题,请参考以下文章