使用python來操做Excel須要用到xlrd和xlwt這兩個庫,做用是在python中讀取和寫入excel數據,使用前須要安裝和import導入;html
使用Python 讀 excel數據,首先須要使用xlrd.open_workbook
(文件名)來打開Excel文件,默認是rb方式打開;python
而後能夠經過xlrd庫對象中的方法來獲取Excel文件信息,讀取excel數據;json
import xlrd from pprint import pprint staff_excel = xlrd.open_workbook('./staff.xlsx') # 獲取這個表中,sheet工做簿的名稱 print(staff_excel.sheet_names()) # 經過名字拿到對應的工做簿 sheet = staff_excel.sheet_by_name('員工基本信息') # 顯示錶格的行數,和列數 print(sheet.nrows) print(sheet.ncols) # 讀取第二行的全部cell中的內容 print(sheet.row_values(2)) # 獲取第2行,第0列的值 print(sheet.cell(2,0).value) print(sheet.cell_value(2,0)) data_type = sheet.cell(2,2).ctype print(data_type) if data_type is 3: # 返回一個元組 # ret = xlrd.xldate_as_tuple(sheet.cell_value(1,2),staff_excel.datemode) # 將excel表中時間轉換爲python中的時間 ret = xlrd.xldate_as_datetime(sheet.cell_value(1,2), staff_excel.datemode) print(ret.strftime('%Y-%m-%d'))
row_values(i)
和col_values(i)
方法能夠獲取指定行數或者列數的信息,其中i是從0開始計數的,這兩個方法都是返回list對象app
cell_value(i, j)
方法能夠讀取單元格數據,i是行數,j是列數,行數和列數都是從0開始計數excel
在excel中0表示empty,1表示string,2表示number,3表示date,4表示boolean,5表示errorcode
首先須要打開excel文件,而後經過名字拿到對應sheet,而後就能夠開始操做excel表格;htm
先建立一個空列表,獲取excel表格中的第一行做爲字典的key值; 而後在局部變量中建立一個字典對象(每次新的循環,字典對象需求清空),經過兩層循環(外循環控制行,內循環控制列)進行取值,將取到的值賦值給字典對象,每次循環完畢都將字典對象添加到定義的空列表中; 要將數據寫入文件中,能夠使用with上下文管理器,經過json.dumps()
方法將以前存放數據的自定義列表進行序列化,而後寫入文件,想輸出真正的中文須要指定參數ensure_ascii=False
;對象
json_list = [] keys = sheet.row_values(0) print(keys) for index_r in range(1,sheet.nrows): # [1,2] # 這個字典必須是局部變量 line = {} for index_c in range(sheet.ncols): # [0, 3] # 拿到類型 cell_type = sheet.cell(index_r, index_c).ctype # 拿到值 cell_value = sheet.cell(index_r, index_c).value # 若是是時間類型 if cell_type is 3: cell_value = xlrd.xldate_as_datetime(cell_value, staff_excel.datemode).strftime('%Y-%m-%d') line[keys[index_c]] = cell_value else: json_list.append(line) pprint(json_list, indent=4) with open('staff.json', 'a+',) as f: f.write(json.dumps(json_list, ensure_ascii=False))
# 建立一個Excel對象文件 new_staff = xlwt.Workbook() staff_sheet = new_staff.add_sheet('xkd員工信息') with open('staff.json') as f: # 返回一個列表 data = json.load(f) # 獲取Excel中的第一行 item = data[0] # 獲取Excel中的值 column_values = [] for item in data: column_values.append(item.values()) # 寫入第一行 for i,key in enumerate(item.keys()): print(key) staff_sheet.write(0, i, label=key) # 寫入其餘的行 for i,column in enumerate(column_values): for j,column_value in enumerate(column): staff_sheet.write(i+1, j, label=column_value) new_staff.save('./new_staff.xls')