国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

使用python3+xlrd解析Excel的實例

2020-01-04 15:13:56
字體:
來源:轉載
供稿:網友

實例如下所示:

# -*- coding: utf-8 -*-import xlrddef open_excel(file = 'file.xls'):#打開要解析的Excel文件  try:    data = xlrd.open_workbook(file)    return data  except Exception as e:    print(e)def excel_by_index(file = 'file.xls', colindex = 0, by_index = 0):#按表的索引讀取  data = open_excel(file)#打開excel文件  tab = data.sheets()[by_index]#選擇excel里面的Sheet  nrows = tab.nrows#行數  ncols = tab.ncols#列數  colName = tab.row_values(colindex)#第0行的值  list = []#創建一個空列表  for x in range(0, nrows):    row = tab.row_values(x)    if row:      app = {}#創建空字典      for y in range(0, ncols):        app [ colName[y] ] = row[y]      list.append(app)  return listdef read_excel(file = 'file.xls', by_index = 0):#直接讀取excel表中的各個值  data = open_excel(file)#打開excel文件  tab = data.sheets()[by_index]#選擇excel里面的Sheet  nrows = tab.nrows#行數  ncols = tab.ncols#列數  for x in range(0, nrows):     for y in range(0, ncols):       value = tab.cell(x,y).value       print(tab.cell(x, y).value)def main():  # print('input the path of your file:')  # a = open_excel(r'D:/smt_ioe/untitled/analysis_excel/my.xls')  # print(a)  b = excel_by_index(r'D:/smt_ioe/untitled/analysis_excel/my.xls', 0, 2)  m = []  for i in range(b.__len__()):    c = b[i]    # a = c['name']  for x in c:    if x == 'date':      print(x)  print('meng')  read_excel(r'D:/smt_ioe/untitled/analysis_excel/my.xls',2)if __name__ == '__main__':  main()

以上這篇使用python3+xlrd解析Excel的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到python教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 晋宁县| 潼关县| 大化| 防城港市| 宁化县| 清镇市| 元谋县| 建水县| 鹰潭市| 诏安县| 洪江市| 石屏县| 蕉岭县| 重庆市| 龙胜| 高台县| 威信县| 红安县| 马鞍山市| 唐海县| 辉县市| 东光县| 宁安市| 县级市| 方山县| 屏南县| 广安市| 汾西县| 三门峡市| 临清市| 普洱| 新津县| 柏乡县| 凤冈县| 九台市| 和田县| 五寨县| 油尖旺区| 灌云县| 林州市| 灌云县|