首页 > 代码库 > python--查询员工信息
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‘
python--查询员工信息
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。