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

首頁 > 編程 > Python > 正文

使用python3+xlrd解析Excel的實例

2020-02-23 00:00:13
字體:
來源:轉載
供稿:網友

實例如下所示:

# -*- 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的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 新源县| 新河县| 米泉市| 吉安县| 永福县| 文安县| 黑山县| 宜良县| 邓州市| 洱源县| 舟山市| 鄢陵县| 桃江县| 新蔡县| 泉州市| 灌云县| 星座| 琼结县| 昌平区| 得荣县| 呼伦贝尔市| 黄龙县| 马龙县| 都匀市| 财经| 黄浦区| 贡山| 分宜县| 修武县| 宁南县| 临武县| 扶沟县| 清水河县| 克什克腾旗| 启东市| 色达县| 方山县| 许昌县| 麻江县| 普格县| 南充市|