http://meetbill.github.io/
分类: LINUX
2016-06-13 23:12:11
borders = xlwt.Borders()
borders.left = 1
borders.right = 1
borders.top = 1
borders.bottom = 1
borders.bottom_colour=0x3A
style = xlwt.XFStyle()
style.borders = borders
sheet.write(0, 0, 'Firstname',style)
|