摘要: 1、写excel 1 import xlwt 2 3 # 写excel 4 book = xlwt.Workbook() 5 sheet = book.add_sheet('sheet1') 6 7 # 第一行第一列 8 sheet.write(0,0,'学生姓名') 9 # 第二行第一列 10 s 阅读全文
posted @ 2020-05-25 23:33 tour8 阅读(189) 评论(0) 推荐(0)