Python-xlwt简单使用 作者:马育民 • 2021-07-09 08:56 • 阅读:10034 # 例子 ``` import xlwt # 创建一个workbook 设置编码 workbook = xlwt.Workbook(encoding = 'utf-8') # 创建一个worksheet worksheet = workbook.add_sheet('21届1班学生信息') # 写入excel # 参数对应 行, 列, 值 worksheet.write(0,0, '学号') # 保存 workbook.save('excel_test.xlsx') ``` # 创建excel ``` xlwt.Workbook(encoding = 'utf-8') ``` **参数:** - encoding:设置编码,一般为 `utf-8` # 创建sheet ``` workbook.add_sheet(sheetname) ``` **参数:** - sheetname:sheet名字 **返回值:** - 添加的 Worksheet 对象 # 写数据 ``` write(r, c, label='', style=) ``` **参数:** - r:行索引,从0开始 - c:列索引,从0开始 - style:样式 # 保存 ``` workbook.save(filename_or_stream) ``` **参数:** - filename_or_stream:保存的文件路径 原文出处:http://malaoshi.top/show_1IX1SR85ZBym.html