如何用python修改excel字体?
比如我现在读取了一个二维数组,我要在某一个单元格或者某一列里设置里面的内容为黑体加粗还有居中,再写入新的excel...
比如我现在读取了一个二维数组,我要在某一个单元格或者某一列里设置里面的内容为黑体加粗还有居中,再写入新的excel
展开
2个回答
展开全部
如果是别人制作的表格,给你审核。鼠标可能不行,用CTRL+A,进行全选后,用鼠标点击修改字体颜色,这样也很快的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
# Initialize a style
style = xlwt.XFStyle()
# Create a font to use with the style
font = xlwt.Font()
font.name = 'Times New Roman'
font.bold = True
# Set the style's font to this new one you set up
style.font = font
# Use the style when writing
sheet.write(0, 0, 'some bold Times text', style)
利用的类库是xlwt
更多参考
style = xlwt.XFStyle()
# Create a font to use with the style
font = xlwt.Font()
font.name = 'Times New Roman'
font.bold = True
# Set the style's font to this new one you set up
style.font = font
# Use the style when writing
sheet.write(0, 0, 'some bold Times text', style)
利用的类库是xlwt
更多参考
参考资料: http://www.codecho.com/write-excel-files-with-python-using-xlwt/
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |