python 使用者登入(簡易版)

2022-06-26 18:51:12 字數 1035 閱讀 2204

#一、簡易版使用者登入,此程式直到使用者輸入正確的使用者名稱和密碼,不然不會退出

1 _name = "

liangchen

"2 _passwd = "

abc123"3

while

true:

4 username = input("

username:")

5 password = input("

password:")

6if username == _name and password ==_passwd:

7print("

welcome %s login

"%_name)

8break

9else:10

print("

invalid username or password!

")

#二、

簡易版使用者登入,使用者輸入正確的使用者名稱和密碼或者使用者輸入三次錯誤都會退出登入

_name = "

liangchen

"_passwd = "

abc123

"login_time =0

while login_time<3:

username = input("

username:")

password = input("

password:")

if username == _name and password ==_passwd:

print("

welcome %s login

"%_name)

break

else

:

print("

invalid username or password!")

login_time += 1

if(login_time == 3):

print("

輸入次數過多,退出登入!")

break

登入許可權之簡易版動態路由 1

login.vue settimeout else 100 terout.json router rule.js const import require import process.env.node env 獲取元件的方法 export function filterasyncrouter as...

檔案上傳簡易版

以下是index.jsp的核心 後台servlet核心 先獲取所接收檔案要儲存的路徑 string path getservletcontext getrealpath imgs 檔案上傳需要臨時目錄 如果不指定,那麼該目錄就是tomcat temp file tempdir new file d ...

許可權設定(簡易版)

我們有乙個表actions是用來設定對選單或者資料進行增刪改查,預覽審核等等許可權的二進位制值,許可權判斷採用二進位制比較,例如乙個使用者對入庫表的action二進位制值為110,10為預覽,110 10 010 那麼他有預覽的許可權 欄位名描述 menu name 選單名dataset name ...