python3 读取Excel表格中的数据
需要先安装openpyxl库
通过pip命令安装: pip install openpyxl
源码如下:
#!/usr/bin/python3 #-*- coding:utf-8 -*- import openpyxl def getCell(wb, sheetname, column): #指定读取哪个Sheet(每个excel表格默认有三个Sheet:Sheet1,Sheet2,Sheet3) table = wb[sheetname] #读取哪一列数据 cell = table[column] for c in cell: #过滤没有数据的行 if (c.value): #打印结果 print(c.value) if __name__ == "__main__": path = 'C:\\Users\\Desktop\\201808.xlsx' #excel对象 wb = openpyxl.load_workbook(path) print(wb.sheetnames) print(wb.active) #传入表名,第一个Sheet的名称 sheetname = wb.sheetnames[0] #传入列名,想读取哪一列就传入该列名 column = 'B' getCell(wb, sheetname, column)
总结
相关推荐
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
猪猪侠喜欢躲猫猫 2020-08-17
快递小可 2020-08-16
shengge0 2020-07-26
巩庆奎 2020-07-21
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
liangzhouqu 2020-07-07
GuoSir 2020-06-28
chaigang 2020-06-27
pythonxuexi 2020-06-25