import xlwt book = xlwt.Workbook()#创建一个excel sheet = book.add_sheet('lanxia')#添加一个sheet页 title = ['姓名','班级','住址','手机号'] data = [ ['孙树江','巨蟹座','中南海',110], ['贾梦缘','巨蟹座','紫禁城',119], ['老孙','天蝎座','花果山',0], ['光远','娜美','天上',120] ] i=0#控制列 for j in title: #j…
1.写入excel,一开始不需要自己新建一个excel,会自动生成 attribute_proba是我写入的对象 import xlwt myexcel = xlwt.Workbook() sheet = myexcel.add_sheet('sheet') si=-1 sj=-1 for i in attribute_proba: si=si+1 for j in i: sj=sj+1 sheet.write(si,sj,str(j)) sj=-1 myexcel.save("attribut…
word里面有2张表,需要找到第二张表,并写入execl中: 代码如下: #coding:utf-8 import os from docx import Document import win32com from win32com.client import Dispatch, constants def parse_docx(f,title): d = Document(f) for t in d.tables: '''获取需要的表''' tbTitle = t.cell(0, 0).tex…