python创建excel

来源:互联网 发布:黑麒麟cms解压密码 编辑:程序博客网 时间:2024/06/05 07:16

import xlrd,xlwt

book=xlwt.Workbook(“utf-8”)
sheet=book.add_sheet(“abc”,cell_overwrite_ok=True)
sheet.write(0,0,”用户名”)
sheet.write(0,1,”密码”)
sheet.write(1,0,”ceshi”)
sheet.write(1,1,”111111”)
book.save(r”xuexi.xls”)

原创粉丝点击