python中excel表格的讀寫

來源:互聯網
上載者:User

標籤:

 1 #!usr/bin/env python 2 #-*- coding:utf-8 -*- 3 import xlrd 4 import xlwt 5 from xlutils.copy import copy 6 import os 7  8 data = xlrd.open_workbook(‘M3000.xls‘) #開啟一個excel表格 9 table = data.sheets()[0] #通過該方法讀取的sheet是唯讀,不能進行寫操作10 rows = table.nrows 11 ncols = table.ncols12 13 datanew = copy(data)  #複製一份新的excel表格14 sheetnew = datanew.get_sheet(0)  #用此方法讀取的sheet可以進行寫操作15 16 def rXcel(rows):17     for r in range(rows-1):18         str = table.cell(r+1,1).value19         num= len(str)20         sheetnew.write(r+1,7,num)21     os.remove(‘M3000.xls‘) #將舊的excel表格刪除了22     datanew.save(‘M3000.xls‘) #在原來的位置,用原來的表格名,重新儲存一個表格23     24 if __name__==‘__main__‘:25     rXcel(rows)

 

python中excel表格的讀寫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.