? xlrd是python中一個第三方的用于讀取excle表格的模塊,很多企業(yè)在沒有使用計算機(jī)管理前大多使用表格來管理數(shù)據(jù),所以導(dǎo)入表格還是非常常用的! 安裝xlrdpip install xlrd excel結(jié)構(gòu)分析? 一個excle表格包含多個sheet ? 一個sheet中包含多行多列 ? 每個單元格具備唯一的行號和列號 常用函數(shù)import xlrd# 讀取文件work_book = xlrd.open_workbook('/Users/jerry/Desktop/公司機(jī)密數(shù)據(jù).xlsx')# 選取一個表# 獲取所有所有表格名稱print(work_book.sheet_names())# 選擇第2個 索引從0開始sheet = work_book.sheet_by_index(1)# 表格名稱print(sheet.name)# 行數(shù)print(sheet.nrows)# 列數(shù)print(sheet.ncols)#批量讀取行數(shù)據(jù)# 取出第6行的全部內(nèi)容包含數(shù)據(jù)類型print(sheet.row(6))# 取出第6行的內(nèi)容包含數(shù)據(jù)類型 從第3列開始獲取print(sheet.row_slice(6,start_colx=3))# 取出第6行的內(nèi)容包含數(shù)據(jù)類型 從第3列開始獲取print(sheet.row_slice(6,start_colx=4,end_colx=5))# 獲取該行所有數(shù)據(jù)類型 一數(shù)字表示# print(sheet.row_types(6))# print(sheet.row_values(6))# 單元格的處理print(sheet.cell(0,0).value) # 取值print(sheet.cell(0,0).ctype) # 取類型print(sheet.cell_value(2,0)) # 直接取值print(sheet.row(0)[0]) # 先取行再取單元格print(sheet.col(0)) # 第0列所有數(shù)據(jù)print(sheet.col(0)) # 先取列再取單元格print(sheet.cell_type(0,0))# 單元格位置轉(zhuǎn)換print(xlrd.cellname(2,1))print(xlrd.cellnameabs(0,2))print(xlrd.colname(5))# 時間類型轉(zhuǎn)換# print(sheet.cell(6,5).value)# print(xlrd.xldate_as_datetime(sheet.cell(6,5).value,1)) 案例:讀取一個報價單 其第二個sheet包含合并單元格 import xlrdsheet = xlrd.open_workbook('報價單.xlsx').sheet_by_index(1)def get_text(row,col): # 判斷該坐標(biāo)是否是被合并的單元格 合并單元格的數(shù)據(jù)都在合并區(qū)域的第一個位置 for ces in sheet.merged_cells: if (row >= ces[0] and row < ces[1]) and (col >= ces[2] and col < ces[3]): return sheet.cell(ces[0],ces[2]).value # 取出合并區(qū)域的第一個數(shù)據(jù) return sheet.cell(row,col).value #正常取出對應(yīng)數(shù)據(jù)keys = sheet.row_values(1) # 獲取所有的列標(biāo)題data = []for row in range(2,sheet.nrows): dic = {} for col in range(sheet.ncols): k = keys[col] #確定key res = get_text(row,col) dic[k] = res # 確定值 并存儲 data.append(dic)print(data)# 序列化為jsonimport jsonjson.dump(data,open('test.json','wt'),ensure_ascii=False) xlwt模塊? 是python中一個第三方的用于寫入excle數(shù)據(jù)到表格的模塊 ? 用代碼來編寫exlce是非常低效的 所以該模塊了解即可,。 import xlwt# 創(chuàng)建工作簿work = xlwt.Workbook()# 創(chuàng)建一個表sheet = work.add_sheet('員工信息數(shù)據(jù)')#創(chuàng)建一個字體對象font = xlwt.Font()font.name = 'Times New Roman' # 字體名稱font.bold = True # 加粗font.italic = True # 斜體font.underline = True # 下劃線#創(chuàng)建一個樣式對象style = xlwt.XFStyle()style.font = font# 寫入標(biāo)題for k in keys: sheet.write(0,keys.index(k),k,style) # 寫入數(shù)據(jù) for i in infos: for k in keys: sheet.write(1 + infos.index(i),keys.index(k),label = i[k]) # 保存至文件 work.save('test.xls') #important: xlwt寫入excel,單元格對寫入的字符有長度限制 string long than 32767 解決方案使用openpyxl模塊替換(默認(rèn)支持.xlsx格式) 面試題: # 讀取文件work_book = xlrd.open_workbook('/xxx/xxx.xlsx')# 選取一個表sheet = work_book.sheet_by_index(0)# 遍歷表格數(shù)據(jù)datas = []for row in range(1,sheet.nrows): temp_list =[] for col in range(sheet.ncols): value = sheet.cell_value(row,col) temp_list.append(value) datas.append(temp_list)# 打開數(shù)據(jù)庫連接db = pymysql.connect(host='localhost', port=3306, user='username', passwd='password', db='database_name', charset='utf8')# 使用cursor()方法獲取操作游標(biāo)cursor = db.cursor()# SQL 插入語句sql = 'INSERT INTO SHOP(shop_code, shop_name, month) VALUES (%s,%s,%s)'try: # 執(zhí)行sql語句 cursor.executemany(sql, datas) # 提交到數(shù)據(jù)庫執(zhí)行 db.commit()except : # 如果發(fā)生錯誤則回滾 db.rollback()# 關(guān)閉游標(biāo)cursor.close()# 關(guān)閉數(shù)據(jù)庫連接db.close()
|
|