使用python为excel添加一个空的sheet2,sheet1不变
时间: 2024-01-23 16:04:16 浏览: 116
python向excel添加sheet.pdf
可以使用openpyxl库来实现为excel添加一个空的sheet2,同时保留sheet1不变,代码如下:
```python
import openpyxl
# 打开excel文件
wb = openpyxl.load_workbook('example.xlsx')
# 创建新的sheet
wb.create_sheet('sheet2')
# 选中sheet1
ws1 = wb['Sheet1']
# 将新的sheet2插入到sheet1之后
wb.move_sheet('sheet2', offset=ws1.index)
# 保存文件
wb.save('example.xlsx')
```
注意:需要确保在执行上述代码前已经安装了openpyxl库。
阅读全文