python編寫登入介面

2021-07-14 19:53:38 字數 1171 閱讀 1908

要求如下:

已鎖定使用者  檔案形式如下:

使用者名稱和密碼  檔案形式如下:

python**如下:

#!usr/bin/env python

#_*_ coding:utf-8 _*_

import sys

retry_limit=3

retry_count=0

account_file='accounts.txt'

lock_file='account_lock.txt'

while retry_count

在linux下,執行結果:

song@ubuntu:~$ python login.py

please enter username:ge

please input password:djf

使用者名稱或密碼錯誤!

please enter username:ge

please input password:df

使用者名稱或密碼錯誤!

please enter username:ge

please input password:djff

使用者名稱或密碼錯誤!

your account has been locked!

song@ubuntu:~$ python login.py

please enter username:ge

user ge  has been locked!

song@ubuntu:~$ python login.py

please enter username:ming

please input password:123df

ming has match succeedly!

welcome login python learning system!

(完)

2019 11 7 登入介面編寫

1 聚焦順序設定 控制項w下方edit tab order 2 qlineedit 屬性echomode password密碼模式 3 目錄檔案 a pro 解決方案 qt core gui 所需要包含的模組 greaterthan qt major version,4 qt widgets tar...

python學習作業練習一 編寫登入介面

編寫登陸介面 coding utf 8 author xiaoju import csv import getpass def login name,pwd 正確的登入資訊存在檔案中 date csv.reader open users xiaoju pycharmprojects xr58 log...

python編寫登入介面(第一天)

作業 編寫登入介面 針對此例項書寫內容具體如下 賬戶檔案account.txt內容如下 tamir 123 test1 123 test2 123 test3 123 賬戶鎖定檔案account lock.txt預設為空 針對賬號檔案 account.txt 裡的使用者進行判斷並鎖定,針對使用者和密...