最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python使用xlrd實(shí)現(xiàn)檢索excel中某列含有指定字符串記錄的方法

 更新時(shí)間:2015年05月09日 16:21:41   作者:小五義  
這篇文章主要介紹了python使用xlrd實(shí)現(xiàn)檢索excel中某列含有指定字符串記錄的方法,涉及Python使用xlrd模塊檢索Excel的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了python使用xlrd實(shí)現(xiàn)檢索excel中某列含有指定字符串記錄的方法。分享給大家供大家參考。具體分析如下:

這里利用xlrd,將excel中某列數(shù)據(jù)中,含有指定字符串的記錄取出,并生成用這個(gè)字符串命名的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程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評論

九龙坡区| 湘潭市| 静宁县| 来凤县| 额尔古纳市| 沅陵县| 民权县| 西充县| 资溪县| 资源县| 资兴市| 龙门县| 凤山市| 界首市| 西宁市| 崇左市| 富阳市| 屏山县| 镇安县| 北京市| 阿鲁科尔沁旗| 阿鲁科尔沁旗| 墨玉县| 泸水县| 宁强县| 公主岭市| 高州市| 梓潼县| 军事| 伊通| 西青区| 镇雄县| 城口县| 永兴县| 浦东新区| 连州市| 宿州市| 绵阳市| 吉林市| 双桥区| 新沂市|