Python 列表練習 使用者管理系統

2021-09-10 08:35:52 字數 1270 閱讀 3095

user = ['admin','root','westos']

passwd = ['admin','123','456']

i=0for i in range(3):

a=input('輸入使用者名稱:')

if a == 'q':

print('退出成功')

exit()

if a in user:

b=input('輸入密碼:')

index = user.index(a)

passwds = passwd[index]

if (b == passwds and a!= user[0] and b!=passwd[0]):

print('登陸成功')

break

elif (a == 'admin' and b == 'admin'):

print('管理員登陸成功'.center(40,'*'))

while true:

print("""

操作目錄

1.新增會員資訊

2.刪除會員資訊

3.檢視會員資訊

4.退出

""")

do=input('輸入你要執行的動作:')

if do == '1':

a=input('輸入新增的會員使用者名稱:')

if a in user:

print('該使用者已經存在')

else:

b=input('輸入該會員密碼:')

print('新增成功')

elif do == '2':

c=input('輸入你要刪除的會員使用者:')

if c in user:

user.remove(c)

passwd.remove(c)

print('刪除成功')

else:

print('該使用者不存在')

elif do == '3':

print(user[1:])

print(passwd[1:])

elif do == '4':

exit()

else:

print('指令錯誤,請重新輸入')

else:

print('密碼錯誤,您還有%d次機會' %(2-j))

else:

print('使用者不存在,您還有%d次機會' %(2-i))

else:

print('三次機會以用完,請您下次登陸')

python練習 使用者管理系統

1.系統裡面有多個使用者,使用者的資訊目前儲存在列表裡面 users root westos passwd 123 456 2.使用者登陸 判斷使用者登陸是否成功 1 判斷使用者是否存在 2 如果存在 1 判斷使用者密碼是否正確 如果正確,登陸成功,推出迴圈 如果密碼不正確,重新登陸,總共有三次機會...

Linux學習 使用者管理

檢視檔案所屬使用者ll或者ls l linux使用者三種角色超級使用者root 擁有系統最高許可權 uid 0 普通使用者 系統使用者 uid 1 999 centos7版本 本地使用者 uid 1000 沒有使用者都有uid 虛擬使用者 偽使用者 一般不會用來登入系統的,他主要是用於位置某個服務的...

MySQL練習《使用者與許可權》

題目資料 drop database if exists studentmanage create database studentmanage use studentmanage create table student sno int primary key,sname nchar 10 s n...