最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

使用python3+xlrd解析Excel的实例

来源:动视网 责编:小采 时间:2020-11-27 14:21:44
文档

使用python3+xlrd解析Excel的实例

使用python3+xlrd解析Excel的实例:这篇文章主要介绍了关于使用python3+xlrd解析Excel的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下实例如下所示:# -*- coding: utf-8 -*- import xlrd def open_excel(file = 'file.xls'):#
推荐度:
导读使用python3+xlrd解析Excel的实例:这篇文章主要介绍了关于使用python3+xlrd解析Excel的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下实例如下所示:# -*- coding: utf-8 -*- import xlrd def open_excel(file = 'file.xls'):#


这篇文章主要介绍了关于使用python3+xlrd解析Excel的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

实例如下所示:

# -*- coding: utf-8 -*-
import xlrd
def 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 list

def 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_ioeuntitledanalysis_excelmy.xls')
 # print(a)
 b = excel_by_index(r'D:smt_ioeuntitledanalysis_excelmy.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_ioeuntitledanalysis_excelmy.xls',2)

if __name__ == '__main__':
 main()

文档

使用python3+xlrd解析Excel的实例

使用python3+xlrd解析Excel的实例:这篇文章主要介绍了关于使用python3+xlrd解析Excel的实例,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下实例如下所示:# -*- coding: utf-8 -*- import xlrd def open_excel(file = 'file.xls'):#
推荐度:
标签: excel 实例 python3
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top