import xlwt workbook=xlwt.Workbook()#创建工作簿 sheet=workbook.add_sheet("1")#创建工作表 sheet.write(0,0,"foobar")#写入 workbook.save("just for test.xls")#保存