码迷,mamicode.com
首页 > 编程语言 > 详细

python脚本二

时间:2015-07-02 01:15:45      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:continue   file   python   

#!/usr/bin/python

a = "a.txt"

f = file(a)

c = f.readlines()

while True:
        user_input = raw_input("plz input your name:").strip()
        if len(user_input) == 0:continue
        for line in c:
                if user_input in line:
                        print line,
                        break
        else:
                print "it is not the user"


python脚本二

标签:continue   file   python   

原文地址:http://44994.blog.51cto.com/34994/1669884

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!