python关闭指定的excel的方法:
1、使用“import”命令导入xlwt模块
import xlwt
2、用该模块的Workbook对象的save()方法可以保存并关闭指定的excel
workbook.save('excel名.xls')
完整代码如下:
col = ["房型", "早餐", "会员专享价", "房态", "操作"] workbook = xlwt.Workbook(encoding="utf-8") worksheet = workbook.add_sheet('sheet2', cell_overwrite_ok=True) for c in col: #将列表名称导入表格 worksheet.write(0, d, c) d += 1 workbook.save('sheet2.xls')
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试