python写excel————xlwt
写excel的拿点不在构造一个workbook的本身,二是填充的数据,不过这不在范围内,在写excel的操作中也有棘手的问题,
比如写入合并的单元格就是比较麻烦,另外写入还有不同的样式
import xlwt
'''设置单元格样式'''
def set_style(name,height,blod=False):
style = xlwt.XFStyle() #初始化样式
font = xlwt.Font() #为样式创建字体
font.name = name #'Times New Roman'
font.bold = blod
font.colour_index = 4
font.height = height
# borders = xlwt.Borders
# borders.left = 6
# borders.right = 6
# borders.top = 6
# borders.bottom = 6
style.font = font
# style.borders = borders
return style
一、写excel
https://www.cnblogs.com/dream66/p/12635916.html 手写推荐
https://segmentfault.com/a/1190000017866070
https://zhuanlan.zhihu.com/p/37775926