3Python文件操作工具 xlsxwriter 工具

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3Python文件操作工具 xlsxwriter 工具相关的知识,希望对你有一定的参考价值。

# _*_ encoding:utf-8 _*_

import xlsxwriter

#创建xlsx后缀名的excel
excel = xlsxwriter.Workbook(r‘D:\github\file\xlswrite_test.xlsx‘)

#添加sheet页名称
sheet = excel.add_worksheet(‘设备名称‘)

#设置行宽,行高
sheet.set_column(‘A:C‘,30)
#设置excel样
bold = excel.add_format({‘bold‘:True})

#向excel写数据
sheet.write(‘A1‘,‘Hello‘)

#向excel写数据,并设置加粗样式
sheet.write(‘A2‘,u‘你好‘,bold)
sheet.write(‘B3‘,‘*&^%$#@!‘)

sheet.write(3,0,32)
sheet.write(4,0,35.5)
sheet.write(5,0,‘=SUM(A4:A5)‘)

#关闭excel
excel.close()
































以上是关于3Python文件操作工具 xlsxwriter 工具的主要内容,如果未能解决你的问题,请参考以下文章

docx, xlsxwriter 库,用 python 来操作 docx, xlsx 格式文件

python+xlsxwriter+PIL自动压图贴图到Excel小工具

Excel操作之写操作---基于xlsxwriter模块

python处理excel文件,python xlsxwriter 一文初掌握

XlsxWriter的使用

使用xlsxwriter模块和xlrd模块操作Excel表格