标签:一个 style excel sheet pre font 姓名 exce import
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.save(‘stu.xls‘) #结尾一定要用.xls
标签:一个 style excel sheet pre font 姓名 exce import
原文地址:https://www.cnblogs.com/jiadan/p/8989779.html