Python下用List对员工信息表进行模糊匹配

#需求

  • 用户可以模糊查询员工信息
  • 显示匹配了多少条,匹配字符需要高亮度显示

#脚本内容

#!/usr/bin/env python
#_*_ coding:utf-8 _*_
while True:
        info = ‘info.txt‘
        f = file(info)
        search=raw_input(‘Please Engter You Search Info: ‘)
        for line in f.readlines():
        i=line.strip().split()
        q=i[0]
        w=i[1]
        e=i[2]
        r=i[3]
        g=len(search)

        #第1列文件模糊匹配
        if search in q:    
            d=len(q)
            c=q.find(search)
            j=c+g
            if c == 0:
            u=q[:g]
            o=q[g:]
            print  "\033[31m%s\033[0m%s %s %s  %s"  % (u,o,w,e,r)
        elif j == d:
            u=q[:c]
            o=q[c:d]
            print  "%s\033[31m%s\033[0m %s  %s  %s"  % (u,o,w,e,r)
        else:
            u=q[:c]
            o=q[c:j]
            p=q[j:]
            print  "%s\033[31m%s\033[0m%s %s %s  %s"  % (u,o,p,w,e,r)
        
        #第2列文件模糊匹配
        if search in w:   
                d=len(w)         
                c=w.find(search) 
                j=c+g
                if c == 0:
                    u=w[:g]
                    o=w[g:]
                    print  "%s\033[31m %s\033[0m%s  %s  %s"  % (q,u,o,e,r)
                elif j == d:
                    u=w[:c]
                    o=w[c:d]
                    print  "%s %s\033[31m%s\033[0m  %s  %s"  % (q,u,o,e,r)
                else:
                    u=w[:c]
                    o=w[c:j]
                    p=w[j:]
                    print  "%s %s\033[31m%s\033[0m%s  %s  %s"  % (q,u,o,p,e,r)

        #第3列文件模糊匹配
        if search in e:          
                d=len(e)
                c=e.find(search) 
                j=c+g
                if c == 0:
                    u=e[:g]
                    o=e[g:]
                    print  "%s %s\033[31m %s\033[0m%s  %s"  % (q,w,u,o,r)
                elif j == d:
                    u=e[:c]
                    o=e[c:d]
                    print  "%s %s %s\033[31m%s\033[0m  %s"  % (q,w,u,o,r)
                else:
                    u=e[:c]
                    o=e[c:j]
                    p=e[j:]
                    print  "%s %s %s\033[31m%s\033[0m%s  %s"  % (q,w,u,o,p,r)

        #第4列文件模糊匹配
        if search in r:
            d=len(r)
            c=r.find(search) 
            j=c+g
            if c == 0:
                u=r[:g]
                o=r[g:]
                print  "%s %s %s\033[31m %s\033[0m%s"  % (q,w,e,u,o)
            elif j == d:
                u=r[:c]
                o=r[c:d]
                print  "%s %s %s %s\033[31m%s\033[0m"  % (q,w,e,u,o)
            else:
                u=r[:c]
                o=r[c:j]
                p=r[j:]
                print  "%s %s %s %s\033[31m%s\033[0m%s"  % (q,w,e,u,o,p)

#员工信息表展示

[[email protected] opt]# cat info.txt 
wsyht  1315326095 yaowan [email protected]
peter  1823572871 duowan [email protected]
jack   15832908124 tanwan [email protected]
jenkis 17937829012 haowan [email protected]

#脚本执行展示

时间: 2024-10-12 04:39:00

Python下用List对员工信息表进行模糊匹配的相关文章

Python 基础 - Day 4 Assignment - 员工信息表程序

作业要求及初步思路 员工信息表程序,实现增删改查操作: ① 可进行模糊查询,语法至少支持下面3种: select name,age from staff_table where age > 22 select * from staff_table where dept = "IT" select * from staff_table where enroll_date like "2013"② 解决方案: sql语句的python解析问题,即将用户输入的sql

python's sixth day for me 员工信息表

import os user_dic = { 'username':None, 'password':None, 'login':True } flag = False name_list = ['id','name','age','phone','job'] check_conditions = ['>','<','=','like'] def auth(func): def wrapper(*args,**kwargs): with open('user-pwd',encoding='ut

Python开发【第xxx篇】函数练习题-----员工信息表

文件存储格式如下: id,name,age,phone,job 1,Alex,22,13651054608,IT 2,Egon,23,13304320533,Tearcher 3,nezha,25,1333235322,IT 现在需要对这个员工信息文件进行增删改查. 基础必做: a.可以进行查询,支持三种语法: select 列名1,列名2,- where 列名条件 支持:大于小于等于,还要支持模糊查找. 示例: select name,age where age>22   #> < s

L01-04:python查询员工信息表练习

#decoding=utf-8 '''编写可供用户查询的员工信息表! 1|用户认证    ID Name department phone    查询关键字:姓名''' import linecache input01=raw_input("pls write your name:") i=1 name=[] count = len(open('user.txt','rU').readlines()) while i<=count:         fline = linecac

python Day 4 :员工信息表程序

员工信息表程序,实现增删改查操作: 可进行模糊查询,语法至少支持下面3种: select name,age from staff_table where age > 22 select  * from staff_table where dept = "IT" select  * from staff_table where enroll_date like "2013" 查到的信息,打印后,最后面还要显示查到的条数 可创建新员工纪录,以phone做唯一键,s

python基础之员工信息表作业

周末大礼包 文件存储格式如下: id, name, age, phone, job 1, Alex, 22, 13651054608, IT 2, Egon, 23, 13304320533, Tearcher 3, nezha, 25, 1333235322, IT 现在需要对这个员工信息文件进行增删改查 一. 基础必做: 可以进行查询,支持三种语法: select 列名1,列名2,… where 列名条件 支持:大于小于等于,还要支持模糊查找. 示例: select name, age wh

第四周作业 员工信息表程序

员工信息表程序,主要用到知识点: 1.文件的读写操作 2.程序目录规范化 3.不同目录间文件的调用 本周学习内容: 一.序列化和反序列化 序列化:字典等类型变成字符串存到内存. a.json.dumps(变量)(字典等简单类型的序列化): b.pickle.dumps(变量)  (只针对本语言的函数等所有类型的序列化) 反序列化:内存的字符串变成字典等类型读出来. a.可以用eval()针对字典类型: b.json.loads(f.read()): c.pickle.loads(f.read()

打印简单公司员工信息表

要求,输入name不为空,输入次数最多3次,3次后跳出程序: 知识点: raw_input str转int whil if elif else continue break for 导入模块 引用变量值 格式化输出 vim #!/usr/bin/env python import sys user_name = "carson" this_year = 2014 counter  = 0 while True:     if counter < 3:         name =

员工信息表作业

# 只实现作业要求的查询功能 # 增加,删除,修改功能为选做题 # 创建员工信息表 # 用户输入查询命令 # 分析用户输入的命令,从命令中提取需要查询的关键字 # 根据关键字来查询内容并输出 staff_table=r'F:\python文件\day21生成器\员工信息表.txt' def select(cmd1): #查询功能 with open(staff_table) as f: path=f.readlines() #读出多行赋值给path staff_l=[{ 'staff_id':