python--查询员工信息

[root@cheeron lesson1]# cat user.txt
cheeron python 409982294
forilen shell 12309865
XueLi JS 4321780
LiLei IT 48393022
Simith IT 2340987
Liudehua Python 1234567

staff.py:

#!/usr/bin/env python

staff_list = ‘user.txt‘

f = open(staff_list)

c = f.readlines()

while True:

  user_input = raw_input(‘\033[32;1mPls input sth to search:\033[0m ‘).strip()

  if len(user_input) == 0: continue

  for line in c:

    if user_input in line:

      print line

      break

  else:

    print ‘\033[31;1mnot a vaild input!\033[0m‘ 

技术分享

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。