模拟登陆作业

作业要求如下
'''
1. 用户输入帐号密码进行登陆
2. 用户信息保存在文件内
3. 用户密码输入错误三次后锁定用户
'''
 1 f=open('user_list','r')
 2 
 3 dic={}
 4 lock_list=[]
 5 with open('lock_file','r+') as f_file:
 6     for line in f:
 7         line = line.strip().split()
 8 
 9         dic[line[0]] = line[1]
10     print(dic)
11 
12 count = 0
13 while True:
14     username=input('请输入用户名》:')
15     passwd=input('请输入密码》:')
16     if username in dic:
17         print('you')
18         if username in lock_list:
19             print('您的用户%s已经被锁定' %username)
20 
21         else:
22             if passwd==dic[username]:
23                 print('登陆成功')
24 
25             else:
26                 count+=1
27                 if count==3:
28                     print('您的%s密码输入错误三次,已经被锁定' %username)
29                     lock_list.append(username)
30                     print(lock_list)
31                     with open('lock_file','a')as f_lock:
32                         f_lock.writelines(str(lock_list)+'\n')
33                 else:
34                     print('密码有误,请重新输入')
35     else:
36         print('无效用户')
37 f.close()
View Code

 

转载于:https://www.cnblogs.com/liushaohui/p/9717117.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值