登入系統作業

2021-10-24 20:05:31 字數 1149 閱讀 8020

print('******************************')

print(' ** 歡迎來到管理系統 ** ')

print(' ')

print(' ♠ 1. 登 錄')

print(' ♠ 2. 注 冊')

print(' ♠ 3. 退 出')

options = input('請選擇1-3:')

if options == '3':

print('退出成功')

else:

ids = input('請輸入你的賬號(3-6位):')

psw = input('請輸入您的密碼(6-12位):')

def make_id(x, y):

f = open('filemanager/id_password.txt')

result = eval(f.read())

if x in result:

print('賬號存在,註冊失敗!')

else:

f = open('filemanager/id_password.txt')

result = eval(f.read())

result[x] = y

f = open('filemanager/id_password.txt', 'w')

f.write(str(result))

def log_in(x, y):

f = open('filemanager/id_password.txt')

result = eval(f.read())

if x in result and result[x] == y:

print('登陸成功')

elif x in result and result[x] != y:

print('密碼錯誤')

else:

print('登入失敗')

if options == '2':

make_id(ids, psw)

if options == '1':

log_in(ids, psw)

使用者登入作業

author lvzunhua deflogin with open user r encoding utf 8 as f 開啟使用者列表配置檔案 con f.readlines 把讀到的使用者按每行當做乙個元素返回到乙個列表中 allname 初始化乙個使用者列表 allpasswd 初始化使用者...

註冊登入介面作業

網頁原始碼 index session start header content type text html charset utf 8 register header content type text html charset utf 8 check include headerfiles.p...

系統自動登入

windows xp 自動登入 單擊 開始 執行 輸入 rundll32 netplwiz.dll,usersrundll 或輸入 control userpasswords2按回車鍵後彈出 使用者帳戶 視窗,看清楚,這可跟 控制面板 中開啟的 使用者賬戶 面板視窗不同!然後取消選定 要使用本機,使...