1. 程式人生 > >python3 建立excel表格的基本步驟

python3 建立excel表格的基本步驟

匯入excel表格庫

import xlwt 

建立一個excel表格

excelTabel= xlwt.Workbook()#建立excel物件
sheet1=excelTabel.add_sheet('lagou',cell_overwrite_ok=True)
sheet1.write(0,0,'公司名')#公司名
sheet1.write(0,1,'城市')#城市
sheet1.write(0,2,'地區')#地區
sheet1.write(0,3,'全職/簡直')#全職/簡直
sheet1.write(0,4,'薪資')#薪資
sheet1.write(0,5,'職位')#職位
sheet1.write(0,6,'工作年限')#工作年限
sheet1.write(0,7,'公司規模')#公司規模
sheet1.write(0,8,'學歷')#學歷

儲存表格

excelTabel.save('lagou.xlsx')