1. 程式人生 > >Python練習程式(一)使用者認證後,聯絡人資訊查詢

Python練習程式(一)使用者認證後,聯絡人資訊查詢

功能:使用者認證後,聯絡人資訊查詢

#!/usr/bin/env python
#coding=utf-8

name = raw_input("請輸入你的使用者名稱:")
while name != 'fgf':
        name = raw_input("沒有查詢到此使用者。\n請重新輸入你的使用者名稱:")
else:
        password = raw_input("請輸入你的密碼:")
        p = '123'
        while password != p:
                password = raw_input("錯誤密碼,請重新輸入:"
) else: print '歡迎進入查詢系統。(輸:q退出)' while True: match_yes = 0 #匹配標示 input = raw_input("\033[31m請輸入你想查詢的名字:\033[0m") if input == ":q":break contact_file = file('contact_list.txt'
) while True: line = contact_file.readline() if len(line)==0 or input=='':break #避免回車輸出所有內容 if input in line: print '匹配項: \033[36;1m%s\033[0m' % line match_yes = 1
if match_yes == 0 : print '沒找到匹配項。'