python使用xlrd实现检索excel中某列含有指定字符串记录的方法


Posted in Python onMay 09, 2015

本文实例讲述了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 相关文章推荐
Python进程通信之匿名管道实例讲解
Apr 11 Python
讲解Python中运算符使用时的优先级
May 14 Python
Python selenium 父子、兄弟、相邻节点定位方式详解
Sep 15 Python
python 处理dataframe中的时间字段方法
Apr 10 Python
学生信息管理系统python版
Oct 17 Python
python求加权平均值的实例(附纯python写法)
Aug 22 Python
python3 pillow模块实现简单验证码
Oct 31 Python
MxNet预训练模型到Pytorch模型的转换方式
May 25 Python
什么是Python中的匿名函数
Jun 02 Python
详解pyqt5的UI中嵌入matplotlib图形并实时刷新(挖坑和填坑)
Aug 07 Python
Pycharm创建文件时自动生成文件头注释(自定义设置作者日期)
Nov 24 Python
Python实现小黑屋游戏的完整实例
Jan 06 Python
Python遍历指定文件及文件夹的方法
May 09 #Python
Python使用chardet判断字符编码
May 09 #Python
python操作ie登陆土豆网的方法
May 09 #Python
Python检测QQ在线状态的方法
May 09 #Python
python常见数制转换实例分析
May 09 #Python
python读写二进制文件的方法
May 09 #Python
Python求导数的方法
May 09 #Python
You might like
全国FM电台频率大全 - 28 甘肃省
2020/03/11 无线电
PHP 命名空间实例说明
2011/01/27 PHP
PHP 下载文件时自动添加bom头的方法实例
2014/01/10 PHP
PHP Warning: Module 'modulename' already loaded in问题解决办法
2015/03/16 PHP
老生常谈php 正则中的i,m,s,x,e分别表示什么
2017/03/02 PHP
PHP利用Cookie设置用户30分钟未操作自动退出功能
2017/07/03 PHP
PHP切割整数工具类似微信红包金额分配的思路详解
2019/09/18 PHP
判断浏览器的javascript版本的代码
2010/09/03 Javascript
网易JS面试题与Javascript词法作用域说明
2010/11/09 Javascript
GreyBox技术总结(转)
2010/11/23 Javascript
js 判断一个元素是否在页面中存在
2012/12/27 Javascript
javascript自然分类法算法实现代码
2013/10/11 Javascript
JavaScript返回上一页的三种方法及区别介绍
2015/07/04 Javascript
如何给ss bash 写一个 WEB 端查看流量的页面
2017/03/23 Javascript
Bootstrap Table使用整理(三)
2017/06/09 Javascript
Angular.JS中指令ng-if的注意事项小结
2017/06/21 Javascript
Express系列之multer上传的使用
2017/10/27 Javascript
VUE引入第三方js包及调用方法讲解
2019/03/01 Javascript
JavaScript实现音乐导航效果
2020/11/19 Javascript
Python 返回汉字的汉语拼音
2009/02/27 Python
Python数据类型详解(一)字符串
2016/05/08 Python
python使用xslt提取网页数据的方法
2018/02/23 Python
python实现Zabbix-API监控
2018/09/17 Python
Python阶乘求和的代码详解
2020/02/14 Python
CSS3 实现侧边栏展开收起动画
2014/12/22 HTML / CSS
团队拓展活动总结
2014/08/27 职场文书
2014年全国爱牙日宣传活动方案
2014/09/21 职场文书
武当山导游词
2015/02/03 职场文书
2015年健康教育工作总结
2015/04/10 职场文书
残联2016年全国助残日活动总结
2016/04/01 职场文书
2019年大学毕业生个人自我鉴定范文大全
2019/03/21 职场文书
导游词幽默开场白
2019/06/26 职场文书
python实现高效的遗传算法
2021/04/07 Python
Python基础之常用库常用方法整理
2021/04/30 Python
如何用Laravel包含你自己的帮助函数
2021/05/27 PHP
Python pygame实现中国象棋单机版源码
2021/06/20 Python