使用之前先导入三个模块: import xlwt #只能写Excel import xlrd #只能读Excel import xlutils #修改Excel,在原来的基础上修改 一.写EXCEL book=xlwt.Workbook() #新建一个Excel sheet=book.add_sheet('sheet1')#建一个sheet页 sheet.write(0,0,'id')#指定行和列,写内容 sheet.write(0,1,'username') sheet.write(0,2,'