python学习(二十二)写Excel文件
Posted 所谓双鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习(二十二)写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.save(‘stu.xls‘) #结尾一定要用.xls
以上是关于python学习(二十二)写Excel文件的主要内容,如果未能解决你的问题,请参考以下文章