import xlwt Excel = xlwt.Workbook(encoding='utf-8', style_compression=0) table = Excel.add_sheet('hello',cell_overwrite_ok=True) #sheet名命名为hello table.write(1,2,"hello")#第一行第二列写入hello(row,col,data) Excel.save(r'world.xls') #Excel表保存为world.xls
import xlwt Excel = xlwt.Workbook(encoding='utf-8', style_compression=0) table = Excel.add_sheet('hello',cell_overwrite_ok=True) #sheet名命名为hello table.write(1,2,"hello")#第一行第二列写入hello(row,col,data) Excel.save(r'world.xls') #Excel表保存为world.xls
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。