xlrd
执笔写回憶
人生苦短,才学Python!
展开
-
Python xlrd模块详细介绍并读取Excel表中的数据
1、xlrd库的安装pip install xlrd2、xlrd模块的一些常用命令①打开excel文件并创建对象存储data = xlrd.open_workbook(文件路径)②获取文件中所有工作表的名称data.sheet_names()③根据工作表的名称获取里面的行列内容table = data.sheet_by_name('Sheet1')④获取工作表...转载 2020-02-14 15:53:33 · 1496 阅读 · 0 评论 -
python xlrd读取datetime类型数据
使用xlrd读取出来的时间字段是类似41410.5083333的浮点数,在使用时需要转换成对应的datetime类型,下面代码是转换的方法:首先需要引入xldate_as_tuple函数:from xlrd import xldate_as_tuple#d是从excel中读取出来的浮点数xldate_as_tuple(d,0)xldate_as_tuple第二个参数有两种取值...原创 2018-06-29 14:38:21 · 3705 阅读 · 0 评论 -
python3 利用xlrd模块封装实现读取表格数据
#!/usr/bin/env python# coding=utf-8# 封装实现读取表格数据import xlrdclass ExcelUtil: # def __init__(self, excel_path, sheet_name): def __init__(self, excel_path): self.data = xlrd.open_wo...原创 2018-08-27 17:44:01 · 1243 阅读 · 0 评论 -
python3用xlrd模块将本地excel转换为json
表格为行列颠倒形式:#!/usr/bin/env python# coding=utf-8# 本地excel转换为jsonimport jsonimport xlrdfile = "product.xlsx"data = xlrd.open_workbook(file)# 第二个sheet表是路南东table = data.sheets()[1]# 行数nrow...原创 2018-08-28 10:47:26 · 1055 阅读 · 0 评论 -
python3将json数据转换到excel中
#!/usr/bin/env python# coding=utf-8# json转换为excelimport xlrdimport jsonimport osfrom openpyxl import Workbookwb = Workbook()ws = wb.activecols = []def json2excel(jsfile, excfile): # 读...原创 2018-08-28 10:55:37 · 6990 阅读 · 0 评论 -
python3利用xlrd和openpyxl处理表格中以分号结尾固话和手机号的数据提取出手机号
导入的debug_info包:https://blog.csdn.net/z564359805/article/details/85624881表格形式如下:电话中是以分号分开的#!/usr/bin/env python# coding=utf-8# 处理蔬菜种植表格import xlrdfrom xlrd import xldate_as_tuplefrom ...原创 2019-03-08 15:21:14 · 682 阅读 · 0 评论