python使用xlrd实现检索excel中某列含有指定字符串记录的方法
作者:小五义 时间:2021-04-23 12:41:26
本文实例讲述了python使用xlrd实现检索excel中某列含有指定字符串记录的方法。分享给大家供大家参考。具体分析如下:
这里利用xlrd,将excel中某列数据中,含有指定字符串的记录取出,并生成用这个字符串命名的txt文件
import os
import xlrd,sys
# input the excel file
Filename=raw_input('input the file name&path:')
if not os.path.isfile(Filename):
raise NameError,"%s is not a valid filename"%Filename
#open the excel file
bk=xlrd.open_workbook(Filename)
#get the sheets number
shxrange=range(bk.nsheets)
print shxrange
#get the sheets name
for x in shxrange:
p=bk.sheets()[x].name.encode('utf-8')
print "Sheets Number(%s): %s" %(x,p.decode('utf-8'))
# input your sheets name
sname=int(raw_input('choose the sheet number:'))
try:
sh=bk.sheets()[sname]
except:
print "no this sheet"
#return None
nrows=sh.nrows
ncols=sh.ncols
# return the lines and col number
print "line:%d col:%d" %(nrows,ncols)
#input the check column
columnnum=int(raw_input('which column you want to check pls input the num(the first colnumn num is 0):'))
while columnnum+1>ncols:
columnnum=int(raw_input('your num is out of range,pls input again:'))
# input the searching string and column
testin=raw_input('input the string:')
#find the cols and save to a txt
outputfilename=testin + '.txt'
outputfile=open(outputfilename,'w')
#find the rows which you want to select and write to a txt file
for i in range(nrows):
cell_value=sh.cell_value(i, columnnum)
if testin in str(cell_value):
outputs=sh.row_values(i)
for tim in outputs:
outputfile.write('%s ' %(tim))
outputfile.write('%s' %(os.linesep))
outputfile.close()
希望本文所述对大家的Python程序设计有所帮助。
标签:python,xlrd,excel
0
投稿
猜你喜欢
Quester解读17条广告效果测定
2007-11-27 12:51:00
通过Pandas读取大文件的实例
2023-12-25 21:18:31
DataGrip 2020.1 安装与激活方法
2022-04-02 19:46:16
python glom模块的使用简介
2021-08-21 10:22:02
asp内置对象ObjectContext详解
2007-09-18 13:16:00
Python读取xlsx文件报错:xlrd.biffh.XLRDError: Excel xlsx file;not supported问题解决
2021-02-02 16:08:59
教你用Python实现一个轮盘抽奖小游戏
2021-11-04 23:49:03
c#几种数据库的大数据批量插入(SqlServer、Oracle、SQLite和MySql)
2024-01-13 08:12:32
Python3单行定义多个变量或赋值方法
2022-03-22 17:10:53
利用Python pandas对Excel进行合并的方法示例
2022-07-31 13:39:41
优化SQL Server的内存占用之执行缓存
2024-01-12 19:13:27
zookeeper python接口实例详解
2023-03-11 01:34:48
Python实现计算长方形面积(带参数函数demo)
2021-07-02 10:07:20
详解Flask前后端分离项目案例
2022-03-16 02:43:51
Echarts.js无法引入问题解决方案
2023-08-12 22:57:26
mysql 8.0.12安装配置方法图文教程(Windows版)
2024-01-13 14:57:40
mysql生成随机字符串函数分享
2024-01-28 14:16:08
Mysql如何查看表及字段信息
2024-01-28 21:35:43
php 仿Comsenz安装效果代码打包提供下载
2024-05-11 09:46:37
教你用Python实现简易版学生信息管理系统(含源码)
2022-07-21 23:40:00