python 스 크 립 트 2

412 단어 pythoncontinueFile
#!/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"

좋은 웹페이지 즐겨찾기