程式需求: 流程圖: 好像畫的不咋地 查看代碼: #!/usr/bin/env python # _*_ coding:utf-8 _*_ # File_type:一個登錄介面 # Author:smelond import os username = "smelond"#用戶名 password ...
程式需求:
- 輸入用戶名,密碼
- 認證成功顯示歡迎信息
- 輸入錯誤三次後鎖定用戶
流程圖:
好像畫的不咋地
查看代碼:
#!/usr/bin/env python # _*_ coding:utf-8 _*_ # File_type:一個登錄介面 # Author:smelond import os username = "smelond"#用戶名 password = "qweqwe"#密碼 counter = 0#計數器 #讀取黑名單 file = os.path.exists("./user.txt")#檢查當前目錄是否有user.txt這個文件,如果有者輸出True賦給file if file == True:#判斷是否有user.txt這個文件 blacklist_file = open("user.txt", "r").read()#open()打開文件,並且用read()讀取文件,然後賦給blacklist_file if blacklist_file == username:#檢查文件裡面的內容是否和我們的用戶名相等 print("Username lock. Please contact the administrator to remove the restrictions!!!")#輸出錯誤提示 exit()#退出程式 #登錄介面 for i in range(3): counter += 1#對每次登錄進行計數 input_user = input("Please input username: ") input_pass = input("Please input password: ") if input_user == username and input_pass == password: print("Welcome login...") break else: print("ERROR Incorrect username or password!!!") continue #寫入黑名單 if counter == 3:#判斷我是否輸入錯誤三次 print("The user name has been disabled")#提示信息 blacklist_user = open("user.txt", "a")#以追加模式打開 (從 EOF 開始, 必要時創建新文件) blacklist_user.write("%s" % username)#將用戶名寫入黑名單 blacklist_user.close()#使用open後一定要記得調用文件對象的close()方法代碼