码迷,mamicode.com
首页 > 其他好文 > 详细

用户登陆三次机会

时间:2018-04-10 17:49:47      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:back   col   username   NPU   choice   input   lex   for   round   

li = [{‘username‘:‘alex‘,‘password‘:‘123‘},
{‘username‘:‘wusir‘,‘password‘:‘23‘},
{‘username‘:‘taibai‘,‘password‘:‘34‘},
]
j = 0
while j < 3 :
username = input(‘姓名:‘)
password = input(‘密码:‘)
for i in li :
if username == i[‘username‘] and password == i[‘password‘]:
print(‘登陆成功!‘)
j=3
break
else:
print(‘登陆不成功,请重新输入~‘)
if j == 2:
choice = input(‘是否再试试?Y‘)
if choice==‘Y‘:
j=-1
j=j+1

用户登陆三次机会

标签:back   col   username   NPU   choice   input   lex   for   round   

原文地址:https://www.cnblogs.com/deja/p/8780262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!