1、使用pyhton创建一个excel文件,并在文件中写入内容
#excel文件处理使用到的模块是xlwt
import xlwt
#闯将f对象 f=xlwt.Workbook()
#文件中新建两个sheet页 sheet1=f.add_sheet("sheett1") sheet2=f.add_sheet("sheett2")
#在sheet页中指定行&列中写入内容 for i in range(10): sheet1.write(i,0,f"第{i}行") for i in range(10): sheet1.write(i,1,"pyrhon")
#将该对象保存(自定义保存路径及文件名) f.save(r"D:\text_excel.xls")
原文:https://www.cnblogs.com/Brynaaa/p/14685290.html