1. 程式人生 > >python學習(二十二)寫Excel文件

python學習(二十二)寫Excel文件

pre span 學習 姓名 port style col color exc

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文件