⽤python套⽤excel模板
py import copy
import xlrd
import xlwt
#打开⼯作簿
tem_excel=xlrd.open_workbook('E:/pythonLesson/1.xls',formatting_info=True)
tem_sheet=tem_excel.sheet_by_index(0)
new_excel=copy(tem_excel)
new_sheet=_sheet(0)
style=xlwt.XFStyle()
font=xlwt.Font()
font.name='微软雅⿊'
font.bold=True
#字体的⾼度等于字号*20
font.height=360
style.font=font
borders=xlwt.Borders()
borders.bottom=xlwt.Borders.THIN
borders.left=xlwt.Borders.THIN
borders.right=xlwt.Borders.THIN
style.borders=borders
python怎么读入excel
#对齐
alignment=xlwt.Alignment()
#⽔平
alignment.horz=xlwt.Alignment.HORZ_CENTER
#竖直
alignment.vert=xlwt.Alignment.VERT_CENTER
style.alignment=alignment
new_sheet.write(2,1,12,style)
new_sheet.write(3,1,18,style)
new_sheet.write(4,1,19,style)
new_sheet.write(5,1,15,style)
new_excel.save('E:/pythonLesson/1.xls')
Excel的读取和写⼊
import xlrd,xlwt
#读取excel数据
xlsx=xlrd.open_workbook("path")
#到sheet可以通过表明或表序号
table=xlsx.sheet_by_index(0)
rows_ws
for x in xrange(1,rows_count):
ll(x,1).value
unit_ll(x,4).value
ll_value(1,2))
ll(1,2).value)
w(1)[2].value)
#写⼊excel
#新建⼀个⼯作簿
new_Workbook=xlwt.Workbook()
#新建⼀个⼯作表并命名
worksheet=new_Workbook.add_sheet('new_test') idx=1
for country,saled in result:
worksheet.write(idx,0,contry)
worksheet.write(idx,1,saled)
idx+=1
#写⼊内容位置内容
worksheet.write(0,0,'test'
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论