Excel的python讀寫

來源:互聯網
上載者:User

標籤:

實際工作中可能需要整理一些文檔,或者記錄一些資料,這時候使用python來操作Excel可能會幫得上你。

 

讀操作:

# encoding : utf-8       #設定編碼方式import xlrd                    #匯入xlrd模組#開啟指定檔案路徑的excel檔案xlsfile = r‘D:\AutoPlan\apisnew.xls‘ book = xlrd.open_workbook(xlsfile)     #獲得excel的book對象#擷取sheet對象,方法有2種:sheet_name=book.sheet_names()[0]          #獲得指定索引的sheet名字print sheet_namesheet1=book.sheet_by_name(sheet_name)  #通過sheet名字來擷取,當然如果你知道sheet名字了可以直接指定sheet0=book.sheet_by_index(0)     #通過sheet索引獲得sheet對象#擷取行數和列數:nrows = sheet.nrows    #行總數ncols = sheet.ncols   #列總數#獲得指定行、列的值,返回對象為一個值列表row_data = sheet.row_values(0)   #獲得第1行的資料列表col_data = sheet.col_values(0)  #獲得第一列的資料列表,然後就可以迭代裡面的資料了#通過cell的位置座標獲得指定cell的值cell_value1 = sheet.cell_value(0,1)  ##只有cell的值內容,如:http://xxx.xxx.xxx.xxx:8850/2/photos/square/print cell_value1cell_value2 = sheet.cell(0,1) ##除了cell值內容外還有附加屬性,如:text:u‘http://xxx.xxx.xxx.xxx:8850/2/photos/square/‘print cell_value2

寫操作:

#encoding:utf-8       #設定編碼方式    import xlwtwbk = xlwt.Workbook(encoding=‘utf-8‘, style_compression=0)sheet = wbk.add_sheet(‘sheet 1‘, cell_overwrite_ok=True)  ##第二參數用於確認同一個cell單元是否可以重設值。sheet.write(0,0,‘some text‘)sheet.write(0,0,‘this should overwrite‘)   ##重新設定,需要cell_overwrite_ok=Truestyle = xlwt.XFStyle()font = xlwt.Font()font.name = ‘Times New Roman‘font.bold = Truestyle.font = fontsheet.write(0, 1, ‘some bold Times text‘, style)wbk.save(‘D:\TestData2.xls‘)    ##該檔案名稱必須存在

剛開始學習,大家一起分享~代碼轉自http://blog.csdn.net/five3/article/details/7034826

 

官方資料:

:http://pypi.python.org/pypi/xlrd

官網地址:http://www.python-excel.org/

文檔地址:https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html

文檔pdf下載:http://www.simplistix.co.uk/presentations/python-excel.pdf

Excel的python讀寫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.