python操作excel需要安装通过pip安装xlwt, xlrd这两个模块: pip install xlwt pip insall xlrd 操作excel ,写入excel: import xlwt book=xlwt.Workbook()#新建一个excel sheet=book.add_sheet('sheet1')##添加一个sheet页 sheet.write(0,0,'姓名') sheet.write(0,1,'性别') sheet.write(0,2,'年龄') book.s…