1. 程式人生 > >python 讀取修改excel

python 讀取修改excel

(1)安裝python官方Excel庫-->xlrd

(2)獲取Excel檔案位置並讀取

(3)讀取sheet

(4)讀取指定rows和cols內容

import xlrd

from datetime import date,datetime

def read_excel():

#檔案位置

ExcelFile=xlrd.open_workbook(r'C:\Users\Administrator\Desktop\TestData.xlsx')

#獲取目標EXCEL檔案sheet名

print ExcelFile.sheet_names()

#獲取整行或者整列的值

rows=sheet.row_values(2)#第三行內容

cols=sheet.col_values(1)#第二列內容

print cols,rows

#獲取單元格內容

print sheet.cell(1,0).value.encode('utf-8')

print sheet.cell_value(1,0).encode('utf-8')

print sheet.row(1)[0].value.encode('utf-8')