编程语言
首页 > 编程语言> > Python 读取excel

Python 读取excel

作者:互联网

https://www.jianshu.com/p/f2c9dff344c6:

一、xlrd模块介绍

  1. xlrd是读取excel表格数据;
  2. 支持 xlsx和xls 格式的excel表格;
  3. 三方模块安装方式:pip3 install xlrd;
  4. 模块导入方式: import xlrd

二、xlrd模块操作

1. 基本函数

1.1. 打开workbook获取Book对象

若filename不存在,则报错FileNotFoundError;
若filename存在,则返回值为xlrd.book.Book对象

1.2. 获取Book对象中所有sheet名称
1.3. 获取Book对象中所有Sheet对象
1.4. 判断Book对象中某个sheet是否导入
1.5. 对Sheet对象中的行操作

rowx:行标,行数从0开始计算(0表示第一行), 必填参数;
start_colx:起始列,表示从start_colx列开始取值,包括第start_colx的值;
end_colx:结束列,表示到end_colx列结束取值,不包括第end_colx的值;

start_colx默认为0,end_colx默认为None:表示取整行相关数据;

1.6. 对Sheet对象中的列操作
1.7. 对Sheet对象的单元格执行操作
 1 import xlrd
 2 
 3 """ 打开excel表格"""
 4 workbook = xlrd.open_workbook("测试.xlsx")
 5 print(workbook)             # 结果:<xlrd.book.Book object at 0x000000000291B128>
 6 
 7 """ 获取所有sheet名称"""
 8 sheet_names = workbook.sheet_names()
 9 print(sheet_names)          # 结果:['表1', 'Sheet2']
10 
11 """ 获取所有或某个sheet对象"""
12 # 获取所有的sheet对象
13 sheets_object = workbook.sheets()
14 print(sheets_object)        # 结果:[<xlrd.sheet.Sheet object at 0x0000000002956710>, <xlrd.sheet.Sheet object at 0x0000000002956AC8>]
15 # 通过index获取第一个sheet对象
16 sheet1_object = workbook.sheet_by_index(0)
17 print(sheet1_object)        # 结果:<xlrd.sheet.Sheet object at 0x0000000002956710>
18 # 通过name获取第一个sheet对象
19 sheet1_object = workbook.sheet_by_name(sheet_name="表1")
20 print(sheet1_object)        # 结果:<xlrd.sheet.Sheet object at 0x0000000002956710>
21 
22 """ 判断某个sheet是否已导入"""
23 # 通过index判断sheet1是否导入
24 sheet1_is_load = workbook.sheet_loaded(sheet_name_or_index=0)
25 print(sheet1_is_load)       # 结果:True
26 # 通过sheet名称判断sheet1是否导入
27 sheet1_is_load = workbook.sheet_loaded(sheet_name_or_index="表1")
28 print(sheet1_is_load)       # 结果:True
29 
30 """ 对sheet对象中的行执行操作:如有效行数、某行从n1到n2列的数据、某行的单元和类型、某行的长度...... """
31 # 获取sheet1中的有效行数
32 nrows = sheet1_object.nrows
33 print(nrows)                # 结果:5
34 # 获取sheet1中第3行的数据
35 all_row_values = sheet1_object.row_values(rowx=2)
36 print(all_row_values)           # 结果:[3.0, 'b', 1, '']
37 row_values = sheet1_object.row_values(rowx=2, start_colx=1, end_colx=3)
38 print(row_values)               # 结果:['b', 1]
39 # 获取sheet1中第3行的单元对象
40 row_object = sheet1_object.row(rowx=2)
41 print(row_object)               # 结果:[number:3.0, text:'b', bool:1, empty:'']
42 # 获取sheet1中第3行的单元
43 row_slice = sheet1_object.row_slice(rowx=2)
44 print(row_slice)                # 结果:[number:3.0, text:'b', bool:1, empty:'']
45 # 获取sheet1中第3行的单元类型
46 row_types = sheet1_object.row_types(rowx=2)
47 print(row_types)                # 结果:array('B', [2, 1, 4, 0])
48 # 获取sheet1中第3行的长度
49 row_len = sheet1_object.row_len(rowx=2)
50 print(row_len)                  # 结果:4
51 # 获取sheet1所有行的生成器
52 rows_generator = sheet1_object.get_rows()
53 print(rows_generator)           # 结果:<generator object Sheet.get_rows.<locals>.<genexpr> at 0x00000000028D8BA0>
54 
55 """ 对sheet对象中的列执行操作:"""
56 # 获取sheet1中的有效列数
57 ncols = sheet1_object.ncols
58 print(ncols)                # 结果:4
59 # 获取sheet1中第colx+1列的数据
60 col_values = sheet1_object.col_values(colx=1)
61 print(col_values)           # 结果:['测试', 'a', 'b', 'c', 'd']
62 col_values1 = sheet1_object.col_values(1, 1, 3)
63 print(col_values1)          # 结果:['a', 'b']
64 # 获取sheet1中第2列的单元
65 col_slice = sheet1_object.col_slice(colx=1)
66 print(col_slice)            # 结果:[text:'测试', text:'a', text:'b', text:'c', text:'d']
67 # 获取sheet1中第2列的单元类型
68 col_types = sheet1_object.col_types(colx=1)
69 print(col_types)            # 结果:[1, 1, 1, 1, 1]
70 
71 """对sheet对象中的单元执行操作"""
72 # 获取sheet1中第rowx+1行,第colx+1列的单元对象
73 cell_info = sheet1_object.cell(rowx=1, colx=2)
74 print(cell_info)           # 结果: text:'m'
75 print(type(cell_info))     # 结果:<class 'xlrd.sheet.Cell'>
76 # 获取sheet1中第rowx+1行,第colx+1列的单元值
77 cell_value = sheet1_object.cell_value(rowx=1, colx=2)
78 print(cell_value)           # 结果: m
79 # 获取sheet1中第rowx+1行,第colx+1列的单元类型值
80 cell_type = sheet1_object.cell_type(rowx=1, colx=2)
81 print(cell_type)            # 结果:1

2. 读取单元格内容为日期/时间的方式

若单元格内容的类型为date,即ctype值为3时,则代表此单元格的数据为日期

标签:sheet,读取,colx,Python,excel,rowx,sheet1,print,row
来源: https://www.cnblogs.com/logolbq/p/11865450.html